mirror of
				https://github.com/snltty/linker.git
				synced 2025-10-31 12:36:48 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
| 	<PropertyGroup>
 | |
| 		<OutputType>Library</OutputType>
 | |
| 		<TargetFrameworks>net8.0</TargetFrameworks>
 | |
| 		<PublishAot>false</PublishAot>
 | |
| 		<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | |
| 		<Configurations>Debug;Release</Configurations>
 | |
| 		<EnablePreviewFeatures>True</EnablePreviewFeatures>
 | |
| 		<Title>linker libs</Title>
 | |
| 		<Authors>snltty</Authors>
 | |
| 		<Company>snltty</Company>
 | |
| 		<Description>linker libs</Description>
 | |
| 		<Copyright>snltty</Copyright>
 | |
| 		<PackageProjectUrl>https://github.com/snltty/linker</PackageProjectUrl>
 | |
| 		<RepositoryUrl>https://github.com/snltty/linker</RepositoryUrl>
 | |
| 		<Version>1.6.7</Version>
 | |
| 		<AssemblyVersion>1.6.7</AssemblyVersion>
 | |
| 		<FileVersion>1.6.7</FileVersion>
 | |
| 	</PropertyGroup>
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
 | |
| 		<DebugType>full</DebugType>
 | |
| 		<DebugSymbols>true</DebugSymbols>
 | |
| 	</PropertyGroup>
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
 | |
| 		<DebugType>full</DebugType>
 | |
| 		<DebugSymbols>true</DebugSymbols>
 | |
| 		<Optimize>True</Optimize>
 | |
| 	</PropertyGroup>
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
 | |
| 	  <DebugType>embedded</DebugType>
 | |
| 	</PropertyGroup>
 | |
| 	<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
 | |
| 	  <DebugType>embedded</DebugType>
 | |
| 	</PropertyGroup>
 | |
| </Project>
 | 
