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>
|
|
|
|
|
<TargetName>Wabbajack.exe</TargetName>
|
|
|
|
|
</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>
|
2021-11-05 02:28:42 +00:00
|
|
|
|
<PackageReference Include="Avalonia" Version="0.10.10" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.10" />
|
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.10" />
|
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.10" />
|
|
|
|
|
<PackageReference Include="ReactiveUI.Fody" Version="16.3.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>
|