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>
|
2022-11-12 05:26:51 +00:00
|
|
|
|
<TargetFramework Condition=" '$(OS)' == 'Windows_NT'">net6.0-windows</TargetFramework>
|
|
|
|
|
<TargetFramework Condition=" '$(OS)' != 'Windows_NT'">net6.0</TargetFramework>
|
2021-10-23 16:51:17 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
2022-05-23 19:54:46 +00:00
|
|
|
|
<AssemblyName>Wabbajack</AssemblyName>
|
2021-10-23 16:51:17 +00:00
|
|
|
|
</PropertyGroup>
|
2022-10-07 22:57:12 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-10-08 03:43:44 +00:00
|
|
|
|
<NoWarn>CS8600,CS8601,CS8618,CS8604,CS1998</NoWarn>
|
2022-10-07 22:57:12 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
<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>
|
2023-10-20 19:11:08 +00:00
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
2022-06-02 00:12:13 +00:00
|
|
|
|
</PropertyGroup>
|
2021-10-23 16:51:17 +00:00
|
|
|
|
<ItemGroup>
|
2024-06-06 14:48:29 +00:00
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
|
2023-11-15 03:09:50 +00:00
|
|
|
|
<PackageReference Include="GitInfo" Version="3.3.3">
|
2022-06-01 21:45:55 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-06-06 14:48:29 +00:00
|
|
|
|
<PackageReference Include="Avalonia" Version="11.0.10" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
|
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.10" />
|
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.10" />
|
2023-11-15 03:09:50 +00:00
|
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
|
|
|
|
|
<PackageReference Include="MessageBox.Avalonia" Version="3.1.5.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
|
2023-10-12 18:33:06 +00:00
|
|
|
|
<PackageReference Include="ReactiveUI.Fody" Version="19.5.1" />
|
2023-11-15 03:09:50 +00:00
|
|
|
|
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.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" />
|
2022-10-01 13:02:47 +00:00
|
|
|
|
<ProjectReference Include="..\Wabbajack.Services.OSIntegrated\Wabbajack.Services.OSIntegrated.csproj" />
|
2021-10-23 16:51:17 +00:00
|
|
|
|
</ItemGroup>
|
2021-10-08 13:16:51 +00:00
|
|
|
|
</Project>
|