Skip to content

Commit 6242354

Browse files
committed
fix
1 parent abbb6bc commit 6242354

File tree

9 files changed

+14
-13
lines changed

9 files changed

+14
-13
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
test-results
66
Qiniu.LocalTest
7-
csharp-sdk.userprefs
7+
*.userprefs
88

99
bin
1010
obj

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ test:
99
#for Linux
1010
#3.5
1111
xbuild csharp-sdk.3.5.sln;
12-
cp Qiniu/bin/Debug/3.5/Qiniu.dll bin
13-
cp Qiniu.Test/bin/Debug/Qiniu.Test.dll bin
14-
nunit-console -framework="3.5" bin/Qiniu.Test.dll
12+
cp Qiniu/bin/Debug/3.5/Qiniu.dll bin/Qiniu.3.5.dll
13+
cp Qiniu.Test/bin/Debug/3.5/Qiniu.Test.dll bin/Qiniu.3.5.Test.dll
14+
nunit-console bin/Qiniu.3.5.Test.dll
1515

1616
#4.0
1717
xbuild csharp-sdk.4.0.sln;
18-
cp Qiniu/bin/Debug/4.0/Qiniu.dll bin
19-
cp Qiniu.Test/bin/Debug/Qiniu.Test.dll bin
20-
nunit-console -framework="4.0" bin/Qiniu.Test.dll
18+
cp Qiniu/bin/Debug/4.0/Qiniu.dll bin/Qiniu.4.0.dll
19+
cp Qiniu.Test/bin/Debug/4.0/Qiniu.Test.dll bin/Qiniu.4.0.Test.dll
20+
nunit-console bin/Qiniu.4.0.Test.dll

Qiniu.Test/Qiniu.3.5.Test.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
<OutputType>Library</OutputType>
1010
<RootNamespace>Qiniu.Test</RootNamespace>
1111
<AssemblyName>Qiniu.Test</AssemblyName>
12+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1213
</PropertyGroup>
1314
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1415
<DebugSymbols>true</DebugSymbols>
1516
<DebugType>full</DebugType>
1617
<Optimize>false</Optimize>
17-
<OutputPath>bin\Debug</OutputPath>
18+
<OutputPath>bin\Debug\3.5\</OutputPath>
1819
<DefineConstants>DEBUG;</DefineConstants>
1920
<ErrorReport>prompt</ErrorReport>
2021
<WarningLevel>4</WarningLevel>
@@ -23,7 +24,7 @@
2324
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2425
<DebugType>full</DebugType>
2526
<Optimize>true</Optimize>
26-
<OutputPath>bin\Release</OutputPath>
27+
<OutputPath>bin\Release\3.5\</OutputPath>
2728
<ErrorReport>prompt</ErrorReport>
2829
<WarningLevel>4</WarningLevel>
2930
<ConsolePause>false</ConsolePause>

Qiniu.Test/Qiniu.4.0.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<DebugSymbols>true</DebugSymbols>
1515
<DebugType>full</DebugType>
1616
<Optimize>false</Optimize>
17-
<OutputPath>bin\Debug</OutputPath>
17+
<OutputPath>bin\Debug\4.0\</OutputPath>
1818
<DefineConstants>DEBUG;</DefineConstants>
1919
<ErrorReport>prompt</ErrorReport>
2020
<WarningLevel>4</WarningLevel>
@@ -23,7 +23,7 @@
2323
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2424
<DebugType>full</DebugType>
2525
<Optimize>true</Optimize>
26-
<OutputPath>bin\Release</OutputPath>
26+
<OutputPath>bin\Release\4.0\</OutputPath>
2727
<ErrorReport>prompt</ErrorReport>
2828
<WarningLevel>4</WarningLevel>
2929
<ConsolePause>false</ConsolePause>

Qiniu/Qiniu.3.5.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Qiniu</RootNamespace>
12-
<AssemblyName>Qiniu</AssemblyName>
12+
<AssemblyName>Qiniu.3.5</AssemblyName>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1515
<TargetFrameworkProfile />

Qiniu/Qiniu.4.0.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Qiniu</RootNamespace>
12-
<AssemblyName>Qiniu</AssemblyName>
12+
<AssemblyName>Qiniu.4.0</AssemblyName>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1515
<TargetFrameworkProfile />

bin/Qiniu.3.5.dll

44.5 KB
Binary file not shown.

bin/Qiniu.4.0.dll

44.5 KB
Binary file not shown.

bin/Qiniu.dll

-46.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)