44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType> <!-- Doesn't actually mean Windows Exe, 'Exe' = console entrypoint, 'WinExe' = application entry point -->
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>false</SelfContained>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BlazorMonaco" Version="3.3.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebView" Version="9.0.7" />
|
|
<PackageReference Include="MudBlazor" Version="8.10.0" />
|
|
<PackageReference Include="Photino.Blazor" Version="4.0.13" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="wwwroot\**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="favicon.ico">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SharpIDE.Application\SharpIDE.Application.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|