Files
MapStudio.UI/MapStudio.UI.csproj

65 lines
2.3 KiB
XML
Raw Permalink Normal View History

2022-04-24 14:08:19 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-09-23 11:39:14 -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'">
2023-08-20 13:34:11 -04:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2022-04-24 14:08:19 -04:00
</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" />
2022-08-29 19:49:55 -04:00
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
2022-04-24 14:08:19 -04:00
<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>
2022-08-21 16:56:35 -04:00
2022-04-24 14:08:19 -04:00
<ItemGroup>
2023-08-20 14:17:01 -04:00
<Reference Include="CurveEditorLibrary">
<HintPath>Externals\CurveEditorLibrary.dll</HintPath>
</Reference>
2022-04-24 14:08:19 -04:00
<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>
2023-09-23 11:37:19 -04:00
<Reference Include="ImGuiColorTextEditNet">
<HintPath>Externals\ImGuiColorTextEditNet.dll</HintPath>
</Reference>
2022-04-24 14:08:19 -04:00
<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>