-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBlazorGirCore.csproj
More file actions
29 lines (25 loc) · 1004 Bytes
/
Copy pathBlazorGirCore.csproj
File metadata and controls
29 lines (25 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(SampleTargetFramework)</TargetFramework>
<RunAOTCompilation>true</RunAOTCompilation>
<TrimMode>partial</TrimMode>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GirCore.Adw-1" />
<PackageReference Include="GirCore.Gtk-4.0" />
<PackageReference Include="GirCore.WebKit-6.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="WebKit.BlazorWebView.GirCore" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BlazorShared\BlazorShared.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\index.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>