2021-09-27 12:42:46 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework Condition=" '$(OS)' == 'Windows_NT'">net6.0-windows</TargetFramework>
|
|
|
|
|
<TargetFramework Condition=" '$(OS)' != 'Windows_NT'">net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Models\" />
|
|
|
|
|
<AvaloniaResource Include="Assets\**" />
|
2021-09-29 22:24:21 +00:00
|
|
|
|
<AvaloniaXaml Remove="Assets\Wabbajack.axaml" />
|
|
|
|
|
<AvaloniaResource Include="Assets\Wabbajack.axaml" />
|
2021-09-27 12:42:46 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-10-11 12:14:05 +00:00
|
|
|
|
<PackageReference Include="Avalonia" Version="0.10.8" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.8" />
|
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.8" />
|
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.8" />
|
2021-09-27 13:44:28 +00:00
|
|
|
|
<PackageReference Include="CefNet.Avalonia" Version="94.0.21246.700" />
|
2021-10-20 03:08:00 +00:00
|
|
|
|
<PackageReference Include="DynamicData" Version="7.4.1" />
|
2021-09-27 12:42:46 +00:00
|
|
|
|
<PackageReference Include="Fizzler.Systems.HtmlAgilityPack" Version="1.2.1" />
|
2021-10-08 04:56:16 +00:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.37" />
|
2021-09-27 12:42:46 +00:00
|
|
|
|
<PackageReference Include="Material.Icons.Avalonia" Version="1.0.2" />
|
2021-10-15 11:53:38 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0-rc.2.21480.5" />
|
2021-09-27 13:44:28 +00:00
|
|
|
|
<PackageReference Include="ReactiveUI.Fody" Version="16.2.6" />
|
2021-09-30 03:12:16 +00:00
|
|
|
|
<PackageReference Include="ReactiveUI.Validation" Version="2.2.1" />
|
2021-09-27 12:42:46 +00:00
|
|
|
|
<PackageReference Include="XamlNameReferenceGenerator" Version="1.3.4" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.CLI\Wabbajack.CLI.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.DTOs\Wabbajack.DTOs.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.Installer\Wabbajack.Installer.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths\Wabbajack.Paths.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Wabbajack.Services.OSIntegrated\Wabbajack.Services.OSIntegrated.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Microsoft.AspNetCore.Mvc.Core" />
|
|
|
|
|
</ItemGroup>
|
2021-09-29 22:24:21 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Screens\SettingsView.axaml.cs">
|
|
|
|
|
<DependentUpon>SettingsView.axaml</DependentUpon>
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
</Compile>
|
2021-09-30 04:03:43 +00:00
|
|
|
|
<Compile Update="Screens\StandardInstallationView.axaml.cs">
|
|
|
|
|
<DependentUpon>StandardInstallationView.axaml</DependentUpon>
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
</Compile>
|
2021-10-19 23:19:06 +00:00
|
|
|
|
<Compile Update="Screens\LogScreenView.axaml.cs">
|
|
|
|
|
<DependentUpon>LogScreenView.axaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2021-09-29 22:24:21 +00:00
|
|
|
|
</ItemGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
|
2021-10-01 12:43:35 +00:00
|
|
|
|
<Target Name="AferBuild" AfterTargets="Build" Condition="!Exists('$(ProjectDir)$(OutDir)libcef.dll')">
|
2021-09-27 12:42:46 +00:00
|
|
|
|
<Message Text="Downloading Cef" />
|
2021-09-27 22:51:27 +00:00
|
|
|
|
<Exec Command="dotnet run --project $(ProjectDir)../Wabbajack.CLI/Wabbajack.CLI.csproj -- download-cef -f $(ProjectDir)$(OutDir)" />
|
2021-09-27 12:42:46 +00:00
|
|
|
|
</Target>
|
|
|
|
|
</Project>
|