forked from SWY1985/CivOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CivOne.csproj
28 lines (26 loc) · 971 Bytes
/
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
<!--
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>netcoreapp2.0</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>CivOne</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>CivOne</PackageId>
<RuntimeIdentifiers>win7-x86;win7-x64;osx.10.10-x64;ubuntu.16.04-x64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
<PackageReference Include="CivOne.API" Version="0.1.0.1129" />
<PackageReference Include="OpenTK.NETCore" Version="1.1.2571.6431" />
</ItemGroup>
<ItemGroup>
<Compile Remove="**" />
<Compile Include="src/**" />
</ItemGroup>
</Project>