OSDN Git Service

985f16c547b5c7c64fdb7deb99633d6e79e3a01a
[automap/automap.git] / Automap / Automap.csproj
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3   <PropertyGroup>
4     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6     <ProjectGuid>{0287E0DF-B785-40E8-BB50-2D684B45FC61}</ProjectGuid>
7     <OutputType>Library</OutputType>
8     <RootNamespace>Automap</RootNamespace>
9     <AssemblyName>Automap</AssemblyName>
10     <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>             
11   </PropertyGroup>
12   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
13     <DebugSymbols>true</DebugSymbols>
14     <DebugType>full</DebugType>
15     <Optimize>false</Optimize>
16     <OutputPath>bin\Debug</OutputPath>
17     <DefineConstants>DEBUG;</DefineConstants>
18     <ErrorReport>prompt</ErrorReport>
19     <WarningLevel>4</WarningLevel>
20     <ConsolePause>false</ConsolePause>
21     <CustomCommands>
22       <CustomCommands>
23         <Command type="AfterBuild" command="7z -tzip a ${ProjectName}_${ProjectConfig}.zip" workingdir="${TargetDir}" />
24         <Command type="AfterClean" command="rm -f *.zip" workingdir="${TargetDir}" />
25       </CustomCommands>
26     </CustomCommands>
27   </PropertyGroup>
28   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29     <Optimize>true</Optimize>
30     <OutputPath>bin\Release</OutputPath>
31     <ErrorReport>prompt</ErrorReport>
32     <WarningLevel>4</WarningLevel>
33     <ConsolePause>false</ConsolePause>
34     <CustomCommands>
35       <CustomCommands>
36         <Command type="AfterBuild" command="7z -tzip a ${ProjectName}_${ProjectConfig}.zip" workingdir="${TargetDir}" />
37         <Command type="AfterClean" command="rm -f *.zip" workingdir="${TargetDir}" />
38       </CustomCommands>
39     </CustomCommands>
40   </PropertyGroup>
41   <ItemGroup>
42     <Reference Include="System" />
43     <Reference Include="VintagestoryAPI">
44       <HintPath>VS_libs\VintagestoryAPI.dll</HintPath>
45       <Private>False</Private>
46     </Reference>
47     <Reference Include="VintagestoryLib">
48       <HintPath>VS_libs\VintagestoryLib.dll</HintPath>
49       <Private>False</Private>
50     </Reference>
51     <Reference Include="VSCreativeMod">
52       <HintPath>VS_libs\VSCreativeMod.dll</HintPath>
53       <Private>False</Private>
54     </Reference>
55     <Reference Include="VSEssentials">
56       <HintPath>VS_libs\VSEssentials.dll</HintPath>
57       <Private>False</Private>
58     </Reference>
59     <Reference Include="VSSurvivalMod">
60       <HintPath>VS_libs\VSSurvivalMod.dll</HintPath>
61       <Private>False</Private>
62     </Reference>
63     <Reference Include="System.Drawing" />
64     <Reference Include="System.Web" />
65     <Reference Include="protobuf-net">
66       <HintPath>VS_libs\protobuf-net.dll</HintPath>
67       <Private>False</Private>
68     </Reference>
69     <Reference Include="Pngcs">
70       <HintPath>VS_libs\Pngcs.dll</HintPath>
71     </Reference>
72   </ItemGroup>
73   <ItemGroup>
74     <Compile Include="AutomapMod.cs" />
75     <Compile Include="Properties\AssemblyInfo.cs" />
76     <Compile Include="Helpers.cs" />
77     <Compile Include="Data\PointOfInterest.cs" />
78     <Compile Include="Data\BlockDesignator.cs" />
79     <Compile Include="Designators\DefaultDesignators.cs" />
80     <Compile Include="Data\ColumnMeta.cs" />
81     <Compile Include="Data\PngMetadataChunk.cs" />
82     <Compile Include="Subsystems\AutomapSystem.cs" />
83     <Compile Include="Subsystems\AutomapGUIDialog.cs" />
84     <Compile Include="Renderers\IChunkRenderer.cs" />
85     <Compile Include="Renderers\StandardRenerer.cs" />
86     <Compile Include="Renderers\AlternateRenderer.cs" />
87     <Compile Include="Data\EntitiesOfInterest.cs" />
88     <Compile Include="Data\EntityDesignator.cs" />
89     <Compile Include="Data\StatusData.cs" />
90   </ItemGroup>
91   <ItemGroup>
92     <Folder Include="VS_libs\" />
93     <Folder Include="Data\" />
94     <Folder Include="assets\" />
95     <Folder Include="assets\automap\" />
96     <Folder Include="assets\automap\config\" />
97     <Folder Include="Designators\" />
98     <Folder Include="Libs\" />
99     <Folder Include="Subsystems\" />
100     <Folder Include="Renderers\" />
101   </ItemGroup>
102   <ItemGroup>
103     <None Include="modinfo.json">
104       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
105     </None>
106     <None Include="assets\automap\config\automap_format.css">
107       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
108     </None>
109   </ItemGroup>
110   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
111 </Project>