mirror of
				https://github.com/snltty/linker.git
				synced 2025-11-01 13:04:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
| 	<PropertyGroup>
 | |
| 		<TargetFrameworks>net8.0</TargetFrameworks>
 | |
| 		<ImplicitUsings>enable</ImplicitUsings>
 | |
| 		<Nullable>disable</Nullable>
 | |
| 		<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | |
| 		<PublishAot>false</PublishAot>
 | |
| 		<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
 | |
| 		<EnablePreviewFeatures>true</EnablePreviewFeatures>
 | |
| 		<Title>linker tunnel</Title>
 | |
| 		<Authors>snltty</Authors>
 | |
| 		<Company>snltty</Company>
 | |
| 		<Description>linker tunnel</Description>
 | |
| 		<Copyright>snltty</Copyright>
 | |
| 		<PackageProjectUrl>https://github.com/snltty/linker</PackageProjectUrl>
 | |
| 		<RepositoryUrl>https://github.com/snltty/linker</RepositoryUrl>
 | |
| 		<PackageReleaseNotes>linker tunnel</PackageReleaseNotes>
 | |
| 		<Version>1.4.6</Version>
 | |
| 		<AssemblyVersion>1.4.6</AssemblyVersion>
 | |
| 		<FileVersion>1.4.6</FileVersion>
 | |
| 	</PropertyGroup>
 | |
| 
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
 | |
| 		<DebugType>full</DebugType>
 | |
| 		<DebugSymbols>true</DebugSymbols>
 | |
| 	</PropertyGroup>
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
 | |
| 		<DebugType>none</DebugType>
 | |
| 		<DebugSymbols>false</DebugSymbols>
 | |
| 		<Optimize>True</Optimize>
 | |
| 	</PropertyGroup>
 | |
| 
 | |
| 	<ItemGroup>
 | |
| 		<ProjectReference Include="..\linker.libs\linker.libs.csproj" />
 | |
| 	</ItemGroup>
 | |
| 
 | |
| </Project>
 | 
