You've already forked MapStudio.UI
mirror of
https://github.com/CraftyBoss/MapStudio.UI.git
synced 2026-04-01 08:50:18 -07:00
65 lines
2.3 KiB
XML
65 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</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="2.1.3" />
|
|
<PackageReference Include="System.Drawing.Common" Version="8.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>Externals\CurveEditorLibrary.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="ImGui.NET">
|
|
<HintPath>Externals\ImGui.NET.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="ImGuiColorTextEditNet">
|
|
<HintPath>Externals\ImGuiColorTextEditNet.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="IONET">
|
|
<HintPath>Externals\IONET.dll</HintPath>
|
|
<Private>False</Private>
|
|
</Reference>
|
|
<Reference Include="OpenTK">
|
|
<HintPath>Externals\OpenTK.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Syroot.BinaryData">
|
|
<HintPath>Externals\Syroot.BinaryData.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Syroot.Maths">
|
|
<HintPath>Externals\Syroot.Maths.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project> |