new build versions (proper x64 and x86 now!) · 70314c57ef - SVN.BY: Go Git Service
Browse Source

new build versions (proper x64 and x86 now!)

Tiernan OToole 8 years ago
parent
commit
70314c57ef
5 changed files with 52 additions and 4 deletions
  1. 18 0
      B2Classes/B2Classes.csproj
  2. 12 2
      B2Uploader.sln
  3. 20 0
      B2Uploader/B2Uploader.csproj
  4. 1 1
      buildx64.cmd
  5. 1 1
      buildx86.cmd

+ 18 - 0
B2Classes/B2Classes.csproj

@@ -29,6 +29,24 @@
29 29
     <ErrorReport>prompt</ErrorReport>
30 30
     <WarningLevel>4</WarningLevel>
31 31
   </PropertyGroup>
32
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Releasex86|AnyCPU'">
33
+    <OutputPath>bin\Releasex86\</OutputPath>
34
+    <DefineConstants>TRACE</DefineConstants>
35
+    <Optimize>true</Optimize>
36
+    <DebugType>pdbonly</DebugType>
37
+    <PlatformTarget>AnyCPU</PlatformTarget>
38
+    <ErrorReport>prompt</ErrorReport>
39
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
40
+  </PropertyGroup>
41
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Releasex64|AnyCPU'">
42
+    <OutputPath>bin\Releasex64\</OutputPath>
43
+    <DefineConstants>TRACE</DefineConstants>
44
+    <Optimize>true</Optimize>
45
+    <DebugType>pdbonly</DebugType>
46
+    <PlatformTarget>AnyCPU</PlatformTarget>
47
+    <ErrorReport>prompt</ErrorReport>
48
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
49
+  </PropertyGroup>
32 50
   <ItemGroup>
33 51
     <Reference Include="System" />
34 52
     <Reference Include="System.Core" />

+ 12 - 2
B2Uploader.sln

@@ -1,7 +1,7 @@
1 1
 
2 2
 Microsoft Visual Studio Solution File, Format Version 12.00
3
-# Visual Studio 2013
4
-VisualStudioVersion = 12.0.31101.0
3
+# Visual Studio 14
4
+VisualStudioVersion = 14.0.24720.0
5 5
 MinimumVisualStudioVersion = 10.0.40219.1
6 6
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "B2Uploader", "B2Uploader\B2Uploader.csproj", "{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}"
7 7
 EndProject
@@ -18,16 +18,26 @@ Global
18 18
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
19 19
 		Debug|Any CPU = Debug|Any CPU
20 20
 		Release|Any CPU = Release|Any CPU
21
+		Releasex64|Any CPU = Releasex64|Any CPU
22
+		Releasex86|Any CPU = Releasex86|Any CPU
21 23
 	EndGlobalSection
22 24
 	GlobalSection(ProjectConfigurationPlatforms) = postSolution
23 25
 		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24 26
 		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
25 27
 		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
26 28
 		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Release|Any CPU.Build.0 = Release|Any CPU
29
+		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Releasex64|Any CPU.ActiveCfg = Releasex64|Any CPU
30
+		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Releasex64|Any CPU.Build.0 = Releasex64|Any CPU
31
+		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Releasex86|Any CPU.ActiveCfg = Releasex86|Any CPU
32
+		{A5D41169-C2EE-4B5E-A2D8-B63E485597A6}.Releasex86|Any CPU.Build.0 = Releasex86|Any CPU
27 33
 		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28 34
 		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
29 35
 		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
30 36
 		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Release|Any CPU.Build.0 = Release|Any CPU
37
+		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Releasex64|Any CPU.ActiveCfg = Releasex64|Any CPU
38
+		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Releasex64|Any CPU.Build.0 = Releasex64|Any CPU
39
+		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Releasex86|Any CPU.ActiveCfg = Releasex86|Any CPU
40
+		{603F71B3-F819-4E4E-8A0E-738CAC305E8F}.Releasex86|Any CPU.Build.0 = Releasex86|Any CPU
31 41
 	EndGlobalSection
32 42
 	GlobalSection(SolutionProperties) = preSolution
33 43
 		HideSolutionNode = FALSE

+ 20 - 0
B2Uploader/B2Uploader.csproj

@@ -35,6 +35,26 @@
35 35
     <ErrorReport>prompt</ErrorReport>
36 36
     <WarningLevel>4</WarningLevel>
37 37
   </PropertyGroup>
38
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Releasex86|AnyCPU'">
39
+    <OutputPath>bin\Releasex86\</OutputPath>
40
+    <DefineConstants>TRACE</DefineConstants>
41
+    <Optimize>true</Optimize>
42
+    <DebugType>pdbonly</DebugType>
43
+    <PlatformTarget>x86</PlatformTarget>
44
+    <ErrorReport>prompt</ErrorReport>
45
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
46
+    <Prefer32Bit>true</Prefer32Bit>
47
+  </PropertyGroup>
48
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Releasex64|AnyCPU'">
49
+    <OutputPath>bin\Releasex64\</OutputPath>
50
+    <DefineConstants>TRACE</DefineConstants>
51
+    <Optimize>true</Optimize>
52
+    <DebugType>pdbonly</DebugType>
53
+    <PlatformTarget>x64</PlatformTarget>
54
+    <ErrorReport>prompt</ErrorReport>
55
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
56
+    <Prefer32Bit>true</Prefer32Bit>
57
+  </PropertyGroup>
38 58
   <ItemGroup>
39 59
     <Reference Include="CommandLine">
40 60
       <HintPath>..\packages\CommandLineParser.2.0.275-beta\lib\net45\CommandLine.dll</HintPath>

+ 1 - 1
buildx64.cmd

@@ -1 +1 @@
1
-%SYSTEMROOT%\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe "%~dp0\B2Uploader.sln" /p:OutputPath="%~dp0\bin\64"
1
+%SYSTEMROOT%\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe /p:Configuration=Releasex64,OutputPath="%~dp0\bin\64"

+ 1 - 1
buildx86.cmd

@@ -1 +1 @@
1
-%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe "%~dp0\B2Uploader.sln" /p:OutputPath="%~dp0\bin\86"
1
+%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe "%~dp0\B2Uploader.sln" /p:Configuration=Releasex86,OutputPath="%~dp0\bin\64"