经过两天修正,足够稳定,发布0204,希望作为LTS版本
大石头
编写于
2020-02-04 22:44:36
X
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<TargetFrameworks>net40;net45;net46;netstandard2.0</TargetFrameworks>
<AssemblyName>NewLife.Core</AssemblyName>
<RootNamespace>NewLife</RootNamespace>
<AssemblyTitle>X组件核心库</AssemblyTitle>
<Description>算法、日志、网络、RPC、序列化、缓存、Windows服务、线程池</Description>
<Company>新生命开发团队</Company>
<Copyright>©2002-2020 NewLife</Copyright>
<Version>8.6.2020.0204</Version>
<FileVersion>8.6.2020.0204</FileVersion>
<AssemblyVersion>8.6.*</AssemblyVersion>
<Deterministic>false</Deterministic>
<OutputPath>..\..\Bin</OutputPath>
<DocumentationFile>$(OutputPath)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<LangVersion>latest</LangVersion>
<!--<Nullable>enable</Nullable>-->
</PropertyGroup>
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<Authors>$(Company)</Authors>
<ProjectUrl>https://github.com/NewLifeX</ProjectUrl>
<PackageIconUrl>http://www.NewLifeX.com/favicon.ico</PackageIconUrl>
<RepositoryUrl>https://github.com/NewLifeX/X</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>新生命团队;X组件;NewLife;$(AssemblyName)</PackageTags>
<PackageReleaseNotes>新一代配置系统</PackageReleaseNotes>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSource>true</IncludeSource>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net40'">
<DefineConstants>$(DefineConstants);__WIN__;NET4</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net45'">
<DefineConstants>$(DefineConstants);__WIN__;NET45</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net46'">
<DefineConstants>$(DefineConstants);__WIN__;NET46</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<DefineConstants>$(DefineConstants);__CORE__;STD20</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.1'">
<DefineConstants>$(DefineConstants);__CORE__;STD21</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<!--<GeneratePackageOnBuild>true</GeneratePackageOnBuild>-->
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net45' Or '$(TargetFramework)'=='net46'">
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="System.Management" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net40'">
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="System.Management" />
<PackageReference Include="System.Net.Http" Version="2.0.20710" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Agent\**" />
<EmbeddedResource Remove="Agent\**" />
<None Remove="Agent\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Http\HttpClient.cs" />
<Compile Remove="Http\HttpSession.cs" />
<Compile Remove="Net\SerialPortConfig.cs" />
<Compile Remove="Net\SerialTransport.cs" />
<Compile Remove="Net\WebSocketSession.cs" />
<Compile Remove="Properties\AssemblyInfo.cs" />
<Compile Remove="Reflection\EmitHelper.cs" />
<Compile Remove="Reflection\EmitReflect.cs" />
<Compile Remove="Web\Pager.cs" />
<Compile Remove="Web\WebHelper.cs" />
<Compile Remove="Windows\MySpeech.cs" />
<Compile Remove="发布NuGet.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="UpdateInfo.txt" />
<None Remove="X组件.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\Doc\logo.ico" Link="logo.ico" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="UpdateInfo.txt" />
<EmbeddedResource Include="Windows\MySpeech.cs" />
<EmbeddedResource Include="X组件.txt" />
</ItemGroup>
</Project>
|