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.
|
|
<Project>
<!-- 生成 --> <PropertyGroup> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> <LangVersion>latest</LangVersion> <NoWarn>CS0108,CS0162,CS0414,CS0612,CS0618,CS0649,CS1589,CS1570,CS1572,CS1573,CS3019,CS3021</NoWarn> </PropertyGroup>
<!-- 程序集信息 --> <PropertyGroup> <Product>Apewer Libraries</Product> <Version>6.3.5</Version> </PropertyGroup>
<!-- NuGet --> <PropertyGroup Condition="'$(Configuration)'=='Release'"> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> <IsPackable>true</IsPackable> </PropertyGroup>
<!-- Debug --> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <DefineConstants>DEBUG;TRACE;$(DefineConstants);$(AdditionalConstants)</DefineConstants> </PropertyGroup>
</Project>
|