forked from MapStudioProject/MapStudio.UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MapStudio.UI.csproj
61 lines (53 loc) · 2.23 KB
/
MapStudio.UI.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Platforms>AnyCPU;x86</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>MapStudioUI</AssemblyName>
<RootNamespace>MapStudio.UI</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Webhook" Version="3.3.2" />
<PackageReference Include="Octokit" Version="0.50.0" />
<PackageReference Include="SharpEXR" Version="1.0.0.19" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GLFrameworkEngine\GLFrameworkEngine.csproj" />
<ProjectReference Include="..\Toolbox.Core\Toolbox.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="CurveEditorLibrary">
<HintPath>..\Track Studio\Lib\CurveEditorLibrary.dll</HintPath>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>..\Track Studio\Lib\ImGui.NET.dll</HintPath>
</Reference>
<Reference Include="IONET">
<HintPath>..\Track Studio\Lib\IONET.dll</HintPath>
</Reference>
<Reference Include="OpenTK">
<HintPath>..\Track Studio\Lib\OpenTK.dll</HintPath>
</Reference>
<Reference Include="Syroot.BinaryData">
<HintPath>..\Track Studio\Lib\Syroot.BinaryData.dll</HintPath>
</Reference>
<Reference Include="Syroot.Maths">
<HintPath>..\Track Studio\Lib\Syroot.Maths.dll</HintPath>
</Reference>
</ItemGroup>
</Project>