Skip to content

Commit ca30db1

Browse files
committed
Merge branch 'master' of https://github.com/qiniu/csharp-sdk
2 parents 7f2a901 + deaf523 commit ca30db1

File tree

2 files changed

+74
-2
lines changed

2 files changed

+74
-2
lines changed

src/Qiniu.ALL_VER.sln

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.14
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qiniu.Net20", "Qiniu\Qiniu.Net20.csproj", "{E5A764FD-FC95-4B51-BB10-9A807ED25652}"
77
EndProject
@@ -17,6 +17,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qiniu.NetCore", "Qiniu\Qini
1717
EndProject
1818
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qiniu.UWP", "Qiniu\Qiniu.UWP.csproj", "{8ECFA9AE-C543-4241-9C89-9BDF235C37E2}"
1919
EndProject
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Qiniu", "Qiniu\Qiniu.csproj", "{60241003-DE4E-4B42-8DE0-5EA73BCB99FC}"
21+
EndProject
2022
Global
2123
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2224
Debug|Any CPU = Debug|Any CPU
@@ -51,6 +53,10 @@ Global
5153
{8ECFA9AE-C543-4241-9C89-9BDF235C37E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
5254
{8ECFA9AE-C543-4241-9C89-9BDF235C37E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
5355
{8ECFA9AE-C543-4241-9C89-9BDF235C37E2}.Release|Any CPU.Build.0 = Release|Any CPU
56+
{60241003-DE4E-4B42-8DE0-5EA73BCB99FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
57+
{60241003-DE4E-4B42-8DE0-5EA73BCB99FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
58+
{60241003-DE4E-4B42-8DE0-5EA73BCB99FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
59+
{60241003-DE4E-4B42-8DE0-5EA73BCB99FC}.Release|Any CPU.Build.0 = Release|Any CPU
5460
EndGlobalSection
5561
GlobalSection(SolutionProperties) = preSolution
5662
HideSolutionNode = FALSE

src/Qiniu/Qiniu.csproj

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFrameworks Condition="'$(LibraryFrameworks)'==''">net46;net45;net40;net35;net20;netstandard1.6</TargetFrameworks>
4+
<TargetFrameworks Condition="'$(LibraryFrameworks)'!=''">$(LibraryFrameworks)</TargetFrameworks>
5+
<AssemblyVersion>7.2.15</AssemblyVersion>
6+
<FileVersion>7.2.15</FileVersion>
7+
<VersionPrefix>7.2.15</VersionPrefix>
8+
<Company>QINIU</Company>
9+
<Copyright>Copyright © 2017</Copyright>
10+
<RootNamespace>Qiniu</RootNamespace>
11+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
12+
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
13+
<MinClientVersion>2.12</MinClientVersion>
14+
</PropertyGroup>
15+
<ItemGroup>
16+
<Compile Remove="CDN\Model\HotLinkRequest.cs" />
17+
<Compile Remove="Common\Mac.cs" />
18+
<Compile Remove="Common\Signature.cs" />
19+
<Compile Remove="Http\HttpHelper.cs" />
20+
<Compile Remove="Http\UrlHelper.cs" />
21+
<Compile Remove="Properties\AssemblyInfo.cs" />
22+
<Compile Remove="Util\QETag.cs" />
23+
</ItemGroup>
24+
<ItemGroup>
25+
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
26+
</ItemGroup>
27+
<ItemGroup Condition="'$(TargetFramework)' == 'net46' OR '$(TargetFramework)' == 'net45'">
28+
<Reference Include="System.Net.Http" />
29+
</ItemGroup>
30+
<PropertyGroup Condition="'$(TargetFramework)'=='net46'">
31+
<AssemblyTitle>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.6)</AssemblyTitle>
32+
<Description>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.6)</Description>
33+
<Product>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.6)</Product>
34+
<DefineConstants>Net46</DefineConstants>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="'$(TargetFramework)'=='net45'">
37+
<AssemblyTitle>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.5)</AssemblyTitle>
38+
<Description>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.5)</Description>
39+
<Product>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.5)</Product>
40+
<DefineConstants>Net45</DefineConstants>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(TargetFramework)'=='net40'">
43+
<AssemblyTitle>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.0)</AssemblyTitle>
44+
<Description>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.0)</Description>
45+
<Product>Qiniu (Cloud) C# SDK v7.2.15 (.NET 4.0)</Product>
46+
<DefineConstants>Net40</DefineConstants>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="'$(TargetFramework)'=='net35'">
49+
<AssemblyTitle>Qiniu (Cloud) C# SDK v7.2.15 (.NET 3.5)</AssemblyTitle>
50+
<Description>Qiniu (Cloud) C# SDK v7.2.15 (.NET 3.5)</Description>
51+
<Product>Qiniu (Cloud) C# SDK v7.2.15 (.NET 3.5)</Product>
52+
<DefineConstants>Net35</DefineConstants>
53+
</PropertyGroup>
54+
<PropertyGroup Condition="'$(TargetFramework)'=='net20'">
55+
<AssemblyTitle>Qiniu (Cloud) C# SDK v7.2.15 (.NET 2.0)</AssemblyTitle>
56+
<Description>Qiniu (Cloud) C# SDK v7.2.15 (.NET 2.0)</Description>
57+
<Product>Qiniu (Cloud) C# SDK v7.2.15 (.NET 2.0)</Product>
58+
<DefineConstants>Net20</DefineConstants>
59+
</PropertyGroup>
60+
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.6'">
61+
<AssemblyTitle>Qiniu (Cloud) C# SDK v7.2.15 (.Net Core)</AssemblyTitle>
62+
<Description>Qiniu (Cloud) C# SDK v7.2.15 (.Net Core)</Description>
63+
<Product>Qiniu (Cloud) C# SDK v7.2.15 (.Net Core)</Product>
64+
<DefineConstants>NetCore</DefineConstants>
65+
</PropertyGroup>
66+
</Project>

0 commit comments

Comments
 (0)