33 lines
		
	
	
		
			733 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			733 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Razor">
 | |
| 
 | |
| 	<PropertyGroup>
 | |
| 		<OutputType>WinExe</OutputType>
 | |
| 		<ApplicationIcon>favicon.ico</ApplicationIcon>
 | |
| 	</PropertyGroup>
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 	  <None Remove="favicon.ico" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 	  <Content Include="favicon.ico">
 | |
| 	    <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 | |
| 	    <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
 | |
| 	    <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
 | |
| 	  </Content>
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 		<PackageReference Include="Photino.Blazor" Version="2.6.0" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 	  <ProjectReference Include="..\ThingsGateway.Foundation.Demo.Rcl\ThingsGateway.Foundation.Demo.Rcl.csproj" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| 
 | |
| 
 | |
| </Project>
 | 
