mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-08-02 14:18:44 +00:00
24 lines
812 B
XML
24 lines
812 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<RootNamespace>LBPUnion.UnionPatcher.Gui</RootNamespace>
|
|
<AssemblyName>LBPUnion.UnionPatcher.Gui</AssemblyName>
|
|
<Configurations>Debug;Release;Windows</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' != 'Windows' ">
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Windows' ">
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Eto.Forms" Version="2.5.11" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\UnionPatcher\UnionPatcher.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|