wabbajack/Wabbajack.Launcher/Wabbajack.Launcher.csproj

25 lines
1.1 KiB
XML
Raw Normal View History

2021-10-02 17:01:09 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2021-10-23 16:51:17 +00:00
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework Condition=" '$(OS)' == 'Windows_NT'">net6.0-windows</TargetFramework>
<TargetFramework Condition=" '$(OS)' != 'Windows_NT'">net6.0</TargetFramework>
<Nullable>enable</Nullable>
2022-05-23 19:54:46 +00:00
<AssemblyName>Wabbajack</AssemblyName>
2021-10-23 16:51:17 +00:00
</PropertyGroup>
<ItemGroup>
2021-10-26 12:06:37 +00:00
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
2021-10-23 16:51:17 +00:00
</ItemGroup>
<ItemGroup>
2022-05-23 15:50:36 +00:00
<PackageReference Include="Avalonia" Version="0.10.14" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.14" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.14" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.14" />
<PackageReference Include="ReactiveUI.Fody" Version="18.0.10" />
2021-10-23 16:51:17 +00:00
</ItemGroup>
<ItemGroup>
2021-10-26 12:06:37 +00:00
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
<ProjectReference Include="..\Wabbajack.Paths\Wabbajack.Paths.csproj" />
2021-10-23 16:51:17 +00:00
</ItemGroup>
2021-10-08 13:16:51 +00:00
</Project>