You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							64 lines
						
					
					
						
							3.7 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							64 lines
						
					
					
						
							3.7 KiB
						
					
					
				
								<Project>
							 | 
						|
								
							 | 
						|
								    <!-- <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" /> -->
							 | 
						|
								
							 | 
						|
								    <!-- 程序集信息 -->
							 | 
						|
								    <PropertyGroup>
							 | 
						|
								        <Description></Description>
							 | 
						|
								        <RootNamespace>Apewer</RootNamespace>
							 | 
						|
								        <Product>Apewer Libraries</Product>
							 | 
						|
								        <Version>6.8.8</Version>
							 | 
						|
								    </PropertyGroup>
							 | 
						|
								
							 | 
						|
								    <!-- 生成 -->
							 | 
						|
								    <PropertyGroup>
							 | 
						|
								        <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
							 | 
						|
								        <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
							 | 
						|
								        <LangVersion>latest</LangVersion>
							 | 
						|
								    </PropertyGroup>
							 | 
						|
								
							 | 
						|
								    <!-- 打包 -->
							 | 
						|
								    <PropertyGroup Condition="'$(Configuration)' == 'Release'">
							 | 
						|
								        <Authors>Elivo</Authors>
							 | 
						|
								        <Company>Apewer Lab</Company>
							 | 
						|
								        <Copyright>Copyright Apewer Lab. All rights reserved.</Copyright>
							 | 
						|
								        <DebugType>none</DebugType>
							 | 
						|
								        <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
							 | 
						|
								        <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
							 | 
						|
								        <IsPackable>true</IsPackable>
							 | 
						|
								        <PackageLicenseExpression>MIT</PackageLicenseExpression>
							 | 
						|
								        <PackageOutputPath>..\</PackageOutputPath>
							 | 
						|
								    </PropertyGroup>
							 | 
						|
								
							 | 
						|
								    <!-- 程序集名称 -->
							 | 
						|
								    <PropertyGroup>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'net6.0'">$(AssemblyName) - .NET 6</AssemblyTitle>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'netcoreapp3.1'">$(AssemblyName) - .NET Core 3.1</AssemblyTitle>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'netstandard2.1'">$(AssemblyName) - .NET Standard 2.1</AssemblyTitle>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'netstandard2.0'">$(AssemblyName) - .NET Standard 2.0</AssemblyTitle>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'net461'">$(AssemblyName) - .NET Framework 4.6.1</AssemblyTitle>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'net40'">$(AssemblyName) - .NET Framework 4.0</AssemblyTitle>
							 | 
						|
								        <AssemblyTitle Condition="'$(TargetFramework)' == 'net20'">$(AssemblyName) - .NET Framework 2.0</AssemblyTitle>
							 | 
						|
								    </PropertyGroup>
							 | 
						|
								
							 | 
						|
								    <!-- 条件编译 -->
							 | 
						|
								    <PropertyGroup>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'net6.0'">NETCORE;NET6;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'netcoreapp3.1'">NETCORE;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'netstandard2.1'">NETSTD;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'netstandard2.0'">NETSTD;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'net461'">NETFX;NET461;NET45;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'net40'">NETFX;NET40;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								        <DefineConstants Condition="'$(TargetFramework)' == 'net20'">NETFX;NET20;$(DefineConstants);$(AdditionalConstants)</DefineConstants>
							 | 
						|
								    </PropertyGroup>
							 | 
						|
								
							 | 
						|
								    <!-- Visual Studio 2022 -->
							 | 
						|
								    <ItemGroup>
							 | 
						|
								        <PackageReference Condition="'$(TargetFramework)' == 'net461'" Include="Microsoft.NETFramework.ReferenceAssemblies.net461" Version="1.0.3" PrivateAssets="all" />
							 | 
						|
								        <PackageReference Condition="'$(TargetFramework)' == 'net40'" Include="Microsoft.NETFramework.ReferenceAssemblies.net40" Version="1.0.3" PrivateAssets="all" />
							 | 
						|
								        <PackageReference Condition="'$(TargetFramework)' == 'net20'" Include="Microsoft.NETFramework.ReferenceAssemblies.net20" Version="1.0.3" PrivateAssets="all" />
							 | 
						|
								    </ItemGroup>
							 | 
						|
								
							 | 
						|
								    <!-- <Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> -->
							 | 
						|
								
							 | 
						|
								</Project>
							 |