Skip to content

Commit 6de753f

Browse files
committed
更新项目文件
1 parent d6d9a43 commit 6de753f

File tree

5 files changed

+297
-291
lines changed

5 files changed

+297
-291
lines changed

src/Senparc.CO2NET.Cache.Memcached/Senparc.CO2NET.Cache.Memcached.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,39 +105,39 @@ https://github.com/JeffreySu/WeiXinMPSDK</Description>
105105
</PropertyGroup>
106106
<!--<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.6|AnyCPU'">
107107
<OutputPath>..\BuildOutPut\</OutputPath>
108-
<DocumentationFile>..\BuildOutPut\netstandard1.6\Senparc.Cache.Memcached.xml</DocumentationFile>
108+
<DocumentationFile>..\BuildOutPut\netstandard1.6\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
109109
</PropertyGroup>-->
110110
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
111111
<OutputPath>..\BuildOutPut\</OutputPath>
112-
<DocumentationFile>..\BuildOutPut\net45\Senparc.Cache.Memcached.xml</DocumentationFile>
112+
<DocumentationFile>..\BuildOutPut\net45\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
113113
</PropertyGroup>
114114
<!--<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.6|AnyCPU'">
115115
<OutputPath>..\BuildOutPut\</OutputPath>
116-
<DocumentationFile>..\BuildOutPut\netstandard1.6\Senparc.Cache.Memcached.xml</DocumentationFile>
116+
<DocumentationFile>..\BuildOutPut\netstandard1.6\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
117117
</PropertyGroup>-->
118118
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
119119
<OutputPath>..\BuildOutPut\</OutputPath>
120-
<DocumentationFile>..\BuildOutPut\netstandard2.0\Senparc.Cache.Memcached.xml</DocumentationFile>
120+
<DocumentationFile>..\BuildOutPut\netstandard2.0\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
121121
</PropertyGroup>
122122
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.0|AnyCPU'">
123123
<OutputPath>..\BuildOutPut\</OutputPath>
124-
<DocumentationFile>..\BuildOutPut\netcoreapp2.0\Senparc.Cache.Memcached.xml</DocumentationFile>
124+
<DocumentationFile>..\BuildOutPut\netcoreapp2.0\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
125125
</PropertyGroup>
126126
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'">
127127
<OutputPath>..\BuildOutPut\</OutputPath>
128-
<DocumentationFile>..\BuildOutPut\netcoreapp2.1\Senparc.Cache.Memcached.xml</DocumentationFile>
128+
<DocumentationFile>..\BuildOutPut\netcoreapp2.1\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
129129
</PropertyGroup>
130130
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'">
131131
<OutputPath>..\BuildOutPut\</OutputPath>
132-
<DocumentationFile>..\BuildOutPut\netcoreapp3.0\Senparc.Cache.Memcached.xml</DocumentationFile>
132+
<DocumentationFile>..\BuildOutPut\netcoreapp3.0\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
133133
</PropertyGroup>
134134
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
135135
<OutputPath>..\BuildOutPut\</OutputPath>
136-
<DocumentationFile>..\BuildOutPut\net6.0\Senparc.Cache.Memcached.xml</DocumentationFile>
136+
<DocumentationFile>..\BuildOutPut\net6.0\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
137137
</PropertyGroup>
138138
<!--<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net461|AnyCPU'">
139139
<OutputPath>..\BuildOutPut\</OutputPath>
140-
<DocumentationFile>..\BuildOutPut\net461\Senparc.Cache.Memcached.xml</DocumentationFile>
140+
<DocumentationFile>..\BuildOutPut\net461\Senparc.CO2NET.Cache.Memcached.xml</DocumentationFile>
141141
</PropertyGroup>-->
142142
<!--<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.6|AnyCPU'">
143143
<DefineConstants>TRACE;DEBUG</DefineConstants>
Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,47 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
6-
<IsPackable>false</IsPackable>
7-
8-
<Configurations>Debug;Release;Test</Configurations>
9-
</PropertyGroup>
10-
11-
<ItemGroup>
12-
<None Remove="appsettings.json" />
13-
</ItemGroup>
14-
15-
<ItemGroup>
16-
<EmbeddedResource Include="appsettings.json">
17-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
18-
</EmbeddedResource>
19-
</ItemGroup>
20-
21-
<ItemGroup>
22-
<PackageReference Include="MessagePack" Version="1.9.11" />
23-
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
24-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.0" />
25-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
26-
<PackageReference Include="Moq" Version="4.9.0" />
27-
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
28-
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
29-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions">
30-
<Version>3.1.2</Version>
31-
</PackageReference>
32-
<PackageReference Include="Microsoft.Net.Http.Headers">
33-
<Version>2.2.8</Version>
34-
</PackageReference>
35-
</ItemGroup>
36-
37-
<ItemGroup>
38-
<ProjectReference Include="..\Senparc.CO2NET.Cache.Redis.RedLock\redlock-cs\src\Senparc.CO2NET.Cache.Redis.RedLock.csproj" />
39-
<ProjectReference Include="..\Senparc.CO2NET.Cache.Redis\Senparc.CO2NET.Cache.Redis.csproj" />
40-
<ProjectReference Include="..\Senparc.CO2NET.Tests\Senparc.CO2NET.Tests.csproj" />
41-
</ItemGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
6+
<IsPackable>false</IsPackable>
7+
8+
<Configurations>Debug;Release;Test</Configurations>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<None Remove="appsettings.json" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<EmbeddedResource Include="appsettings.json">
17+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
18+
</EmbeddedResource>
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<PackageReference Include="MessagePack" Version="1.9.11" />
23+
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
24+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.0" />
25+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
26+
<PackageReference Include="Moq" Version="4.9.0" />
27+
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
28+
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
29+
<PackageReference Include="Microsoft.Net.Http.Headers">
30+
<Version>2.2.8</Version>
31+
</PackageReference>
32+
</ItemGroup>
33+
34+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
35+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.2" />
36+
</ItemGroup>
37+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net6.0' ">
38+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
39+
</ItemGroup>
40+
41+
<ItemGroup>
42+
<ProjectReference Include="..\Senparc.CO2NET.Cache.Redis.RedLock\redlock-cs\src\Senparc.CO2NET.Cache.Redis.RedLock.csproj" />
43+
<ProjectReference Include="..\Senparc.CO2NET.Cache.Redis\Senparc.CO2NET.Cache.Redis.csproj" />
44+
<ProjectReference Include="..\Senparc.CO2NET.Tests\Senparc.CO2NET.Tests.csproj" />
45+
</ItemGroup>
4246

4347
</Project>

src/Senparc.CO2NET.Cache.Redis/Senparc.CO2NET.Cache.Redis.csproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,7 @@
129129
<OutputPath>..\BuildOutPut\</OutputPath>
130130
<DocumentationFile>..\BuildOutPut\netstandard2.0\Senparc.CO2NET.Cache.Redis.xml</DocumentationFile>
131131
</PropertyGroup>
132-
<!--<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.6|AnyCPU'">
133-
<DefineConstants>TRACE;DEBUG</DefineConstants>
134-
</PropertyGroup>-->
135-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
136-
<!--<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" />
137-
<PackageReference Include="System.Dynamic.Runtime" />
138-
<PackageReference Include="System.Threading.Thread" />
139-
<PackageReference Include="System.Xml.XmlSerializer" />-->
140-
</ItemGroup>
132+
141133
<ItemGroup>
142134
<Compile Remove="packages\**" />
143135
<Compile Remove="ServiceStack.Redis\**" />
Lines changed: 46 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,50 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
6-
<IsPackable>false</IsPackable>
7-
8-
<Configurations>Debug;Release;Test</Configurations>
9-
</PropertyGroup>
10-
11-
<ItemGroup>
12-
<None Remove="appsettings.json" />
13-
</ItemGroup>
14-
15-
<ItemGroup>
16-
<EmbeddedResource Include="appsettings.json">
17-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
18-
</EmbeddedResource>
19-
</ItemGroup>
20-
21-
<ItemGroup>
22-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.0" />
23-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.0" />
24-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
25-
<PackageReference Include="Moq" Version="4.8.3" />
26-
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
27-
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
28-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions">
29-
<Version>3.1.2</Version>
30-
</PackageReference>
31-
<PackageReference Include="Microsoft.Net.Http.Headers">
32-
<Version>2.2.8</Version>
33-
</PackageReference>
34-
35-
</ItemGroup>
36-
37-
<ItemGroup>
38-
<ProjectReference Include="..\Senparc.CO2NET.AspNet\Senparc.CO2NET.AspNet.csproj" />
39-
<ProjectReference Include="..\Senparc.CO2NET.Cache.CsRedis\Senparc.CO2NET.Cache.CsRedis.csproj" />
40-
<ProjectReference Include="..\Senparc.CO2NET.Cache.Memcached\Senparc.CO2NET.Cache.Memcached.csproj" />
41-
<ProjectReference Include="..\Senparc.CO2NET.Cache.Redis\Senparc.CO2NET.Cache.Redis.csproj" />
42-
<ProjectReference Include="..\Senparc.CO2NET\Senparc.CO2NET.csproj" />
43-
</ItemGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
6+
<IsPackable>false</IsPackable>
7+
8+
<Configurations>Debug;Release;Test</Configurations>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<None Remove="appsettings.json" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<EmbeddedResource Include="appsettings.json">
17+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
18+
</EmbeddedResource>
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.0" />
23+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.0" />
24+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
25+
<PackageReference Include="Moq" Version="4.8.3" />
26+
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
27+
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
28+
29+
<PackageReference Include="Microsoft.Net.Http.Headers">
30+
<Version>2.2.8</Version>
31+
</PackageReference>
32+
33+
</ItemGroup>
34+
35+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
36+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.2" />
37+
</ItemGroup>
38+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net6.0' ">
39+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
40+
</ItemGroup>
41+
42+
<ItemGroup>
43+
<ProjectReference Include="..\Senparc.CO2NET.AspNet\Senparc.CO2NET.AspNet.csproj" />
44+
<ProjectReference Include="..\Senparc.CO2NET.Cache.CsRedis\Senparc.CO2NET.Cache.CsRedis.csproj" />
45+
<ProjectReference Include="..\Senparc.CO2NET.Cache.Memcached\Senparc.CO2NET.Cache.Memcached.csproj" />
46+
<ProjectReference Include="..\Senparc.CO2NET.Cache.Redis\Senparc.CO2NET.Cache.Redis.csproj" />
47+
<ProjectReference Include="..\Senparc.CO2NET\Senparc.CO2NET.csproj" />
48+
</ItemGroup>
4449

4550
</Project>

0 commit comments

Comments
 (0)