Files
MapStudio.UI/MapStudio.UI.csproj

60 lines
2.0 KiB
XML
Raw Permalink Normal View History

2022-04-24 14:08:19 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-09-27 17:57:39 -04:00
<TargetFramework>net6.0</TargetFramework>
2022-04-24 14:08:19 -04:00
<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="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GLFrameworkEngine\GLFrameworkEngine.csproj" />
<ProjectReference Include="..\Toolbox.Core\Toolbox.Core.csproj" />
</ItemGroup>
2022-08-21 16:56:35 -04:00
2022-04-24 14:08:19 -04:00
<ItemGroup>
<Reference Include="CurveEditorLibrary">
2022-08-21 16:56:35 -04:00
<HintPath>Externals\CurveEditorLibrary.dll</HintPath>
2022-04-24 14:08:19 -04:00
</Reference>
<Reference Include="ImGui.NET">
2022-08-21 16:56:35 -04:00
<HintPath>Externals\ImGui.NET.dll</HintPath>
2022-04-24 14:08:19 -04:00
</Reference>
<Reference Include="IONET">
2022-08-21 16:56:35 -04:00
<HintPath>Externals\IONET.dll</HintPath>
2022-08-29 19:49:55 -04:00
<Private>False</Private>
2022-04-24 14:08:19 -04:00
</Reference>
<Reference Include="OpenTK">
2022-08-21 16:56:35 -04:00
<HintPath>Externals\OpenTK.dll</HintPath>
2022-04-24 14:08:19 -04:00
</Reference>
<Reference Include="Syroot.BinaryData">
2022-08-21 16:56:35 -04:00
<HintPath>Externals\Syroot.BinaryData.dll</HintPath>
2022-04-24 14:08:19 -04:00
</Reference>
<Reference Include="Syroot.Maths">
2022-08-21 16:56:35 -04:00
<HintPath>Externals\Syroot.Maths.dll</HintPath>
2022-04-24 14:08:19 -04:00
</Reference>
</ItemGroup>
</Project>