forked from SWY1985/CivOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CivOne.csproj
39 lines (37 loc) · 1.23 KB
/
CivOne.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!--
CivOne
To the extent possible under law, the person who associated CC0 with
CivOne has waived all copyright and related or neighboring rights
to CivOne.
You should have received a copy of the CC0 legalcode along with this
work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>CivOne</AssemblyName>
<PackageId>CivOne</PackageId>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Debug'))">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<DefineConstants>DEBUG</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Release'))">
<DebugType>none</DebugType>
<DefineConstants>RELEASE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="api/CivOne.API.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="**" />
<Compile Include="shared/**" />
<Compile Include="src/**" />
</ItemGroup>
</Project>