forked from anegostudios/vsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVintagestoryAPI.csproj
More file actions
36 lines (31 loc) · 1.57 KB
/
VintagestoryAPI.csproj
File metadata and controls
36 lines (31 loc) · 1.57 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>VintagestoryAPI</AssemblyName>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<TargetFramework>$(FrameworkVersion)</TargetFramework>
<OutputPath>..\bin\$(Configuration)</OutputPath>
<Configurations>Debug;Release;PerfTest</Configurations>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PerfTest|AnyCPU'">
<DefineConstants>TRACE;PERFTEST</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="OpenTK.Windowing.GraphicsLibraryFramework" Version="4.8.2" />
<PackageReference Include="OpenTK.redist.glfw" Version="3.3.9-vs.1" />
<PackageReference Include="OpenTK.Windowing.Desktop" Version="4.8.2" />
<PackageReference Include="protobuf-net" Version="2.4.7" />
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cairo\Cairo.csproj" />
</ItemGroup>
</Project>