-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathCivOne.csproj
45 lines (43 loc) · 1.57 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
40
41
42
43
44
45
<!--
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>
<RootNamespace>CivOne</RootNamespace>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>8.0</LangVersion>
<PackageId>CivOne</PackageId>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Debug'))">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<DefineConstants>DEBUG</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Preview')) OR $(Configuration.StartsWith('Release'))">
<DebugType>none</DebugType>
<DefineConstants Condition="$(Configuration.StartsWith('Preview'))">PREVIEW</DefineConstants>
<DefineConstants Condition="$(Configuration.StartsWith('Release'))">RELEASE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.3.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="api/CivOne.API.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="**" />
<Compile Include="shared/**" />
<Compile Include="src/**" />
</ItemGroup>
</Project>