mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
51 lines
2.3 KiB
XML
51 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<PublishSingleFile>True</PublishSingleFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LibSassBuilder" Version="2.0.1" />
|
|
<PackageReference Include="Fluxor" Version="4.2.2-Alpha" />
|
|
<PackageReference Include="Fluxor.Blazor.Web" Version="4.2.2-Alpha" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Wpf" Version="6.0.101-preview.11.2349" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Required so updating the .scss files doesn't trigger a reload when using dotnet watch run. -->
|
|
<Content Remove="**\*.scss" />
|
|
<Content Include="**\*.scss" Watch="false" />
|
|
<Content Update="wwwroot\index.html">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Compiler\Wabbajack.Compiler.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Installer\Wabbajack.Installer.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Services.OSIntegrated\Wabbajack.Services.OSIntegrated.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- <Target Name="DeleteGeneratedCSSFiles" AfterTargets="Build">-->
|
|
<!-- <ItemGroup>-->
|
|
<!-- <FilesToDelete Include="$(ProjectDir)Components\**\*.css"/>-->
|
|
<!-- <FilesToDelete Include="$(ProjectDir)Pages\**\*.css"/>-->
|
|
<!-- <FilesToDelete Include="$(ProjectDir)Shared\**\*.css"/>-->
|
|
<!-- </ItemGroup>-->
|
|
<!-- <Message Text="@(FilesToDelete, ', ')" Importance="High"/>-->
|
|
<!-- <Delete Files="@(FilesToDelete)"/>-->
|
|
<!-- </Target>-->
|
|
</Project>
|