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
|
|
|
|
<AvaloniaResource Include="Assets\**" />
|
2021-10-23 16:51:17 +00:00
|
|
|
|
</ItemGroup>
|
2022-06-02 00:12:13 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ApplicationIcon>Resources\Icons\wabbajack.ico</ApplicationIcon>
|
|
|
|
|
</PropertyGroup>
|
2021-10-23 16:51:17 +00:00
|
|
|
|
<ItemGroup>
|
2022-06-01 21:45:55 +00:00
|
|
|
|
<PackageReference Include="GitInfo" Version="2.2.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-08-09 11:56:05 +00:00
|
|
|
|
<PackageReference Include="Avalonia" Version="0.10.17" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.17" />
|
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.17" />
|
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.17" />
|
|
|
|
|
<PackageReference Include="MessageBox.Avalonia" Version="2.0.2" />
|
2022-06-01 21:45:55 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
|
2022-08-09 11:56:05 +00:00
|
|
|
|
<PackageReference Include="ReactiveUI.Fody" Version="18.3.1" />
|
2022-06-01 21:45:55 +00:00
|
|
|
|
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="6.0.0" />
|
2021-10-23 16:51:17 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2022-06-01 21:45:55 +00:00
|
|
|
|
<ProjectReference Include="..\Wabbajack.Downloaders.Http\Wabbajack.Downloaders.Http.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.Downloaders.Nexus\Wabbajack.Downloaders.Nexus.csproj" />
|
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>
|