-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathInfiniFrameExample.BlazorWebView.csproj
More file actions
43 lines (38 loc) · 1.69 KB
/
Copy pathInfiniFrameExample.BlazorWebView.csproj
File metadata and controls
43 lines (38 loc) · 1.69 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>WinExe</OutputType>
<LangVersion>14.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseAppHost>true</UseAppHost>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ApplicationIcon>../../assets/favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../../src/InfiniFrame/InfiniFrame.csproj"/>
<ProjectReference Include="../../src/InfiniFrame.BlazorWebView/InfiniFrame.BlazorWebView.csproj"/>
<ProjectReference Include="../../src/InfiniFrame.Blazor/InfiniFrame.Blazor.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog"/>
<PackageReference Include="Serilog.AspNetCore"/>
<PackageReference Include="Serilog.Sinks.Async"/>
<PackageReference Include="Serilog.Sinks.Console"/>
</ItemGroup>
<ItemGroup>
<Content Include="../../assets/favicon.ico">
<Link>wwwroot/favicon.ico</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="../../InfiniFrame.NativeCopy.targets" />
<ItemGroup>
<None Include="bin/$(Configuration)/$(TargetFramework)/**/publish/$(AssemblyName).exe;
bin/$(Configuration)/$(TargetFramework)/**/publish/$(AssemblyName)"
Visible="true">
<Link>builds/$(Configuration)/$(TargetFramework)/%(RecursiveDir)%(Filename)%(Extension)</Link>
</None>
</ItemGroup>
</Project>