Skip to content
This repository was archived by the owner on Sep 9, 2022. It is now read-only.

Commit 25e088d

Browse files
committed
Fixed build configs
1 parent b218940 commit 25e088d

File tree

7 files changed

+57
-0
lines changed

7 files changed

+57
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,3 +175,4 @@ FakesAssemblies/
175175
src/NuGetPackage/*.nupkg
176176
src/NuGetPackage/lib/
177177
src/NuGetPackage/src/
178+
*.nupkg

src/Client/Client.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@
4444
<ErrorReport>prompt</ErrorReport>
4545
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4646
</PropertyGroup>
47+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Staging|AnyCPU'">
48+
<DebugSymbols>true</DebugSymbols>
49+
<OutputPath>bin\Staging\</OutputPath>
50+
<DefineConstants>DEBUG;TRACE</DefineConstants>
51+
<DebugType>full</DebugType>
52+
<PlatformTarget>AnyCPU</PlatformTarget>
53+
<ErrorReport>prompt</ErrorReport>
54+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
55+
</PropertyGroup>
4756
<ItemGroup>
4857
<Compile Include="ClientCompressionHandler.cs" />
4958
<Compile Include="Properties\AssemblyInfo.cs" />

src/Core/Core.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@
4242
<ErrorReport>prompt</ErrorReport>
4343
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4444
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Staging|AnyCPU'">
46+
<DebugSymbols>true</DebugSymbols>
47+
<OutputPath>bin\Staging\</OutputPath>
48+
<DefineConstants>DEBUG;TRACE</DefineConstants>
49+
<DebugType>full</DebugType>
50+
<PlatformTarget>AnyCPU</PlatformTarget>
51+
<ErrorReport>prompt</ErrorReport>
52+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
53+
</PropertyGroup>
4554
<ItemGroup>
4655
<Compile Include="Compressors\BaseCompressor.cs" />
4756
<Compile Include="Compressors\DeflateCompressor.cs" />

src/Microsoft.AspNet.WebApi.MessageHandlers.Compression.sln

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,37 +17,48 @@ Global
1717
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1818
Debug|Any CPU = Debug|Any CPU
1919
Release|Any CPU = Release|Any CPU
20+
Staging|Any CPU = Staging|Any CPU
2021
Test|Any CPU = Test|Any CPU
2122
EndGlobalSection
2223
GlobalSection(ProjectConfigurationPlatforms) = postSolution
2324
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2425
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
2526
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
2627
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
29+
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Staging|Any CPU.Build.0 = Staging|Any CPU
2730
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Test|Any CPU.ActiveCfg = Test|Any CPU
2831
{56E19FF7-9AC7-48C5-9AC2-105F55AA16E1}.Test|Any CPU.Build.0 = Test|Any CPU
2932
{7952E97C-2C7E-424B-A912-ED875576CA92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3033
{7952E97C-2C7E-424B-A912-ED875576CA92}.Debug|Any CPU.Build.0 = Debug|Any CPU
3134
{7952E97C-2C7E-424B-A912-ED875576CA92}.Release|Any CPU.ActiveCfg = Release|Any CPU
3235
{7952E97C-2C7E-424B-A912-ED875576CA92}.Release|Any CPU.Build.0 = Release|Any CPU
36+
{7952E97C-2C7E-424B-A912-ED875576CA92}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
37+
{7952E97C-2C7E-424B-A912-ED875576CA92}.Staging|Any CPU.Build.0 = Staging|Any CPU
3338
{7952E97C-2C7E-424B-A912-ED875576CA92}.Test|Any CPU.ActiveCfg = Test|Any CPU
3439
{7952E97C-2C7E-424B-A912-ED875576CA92}.Test|Any CPU.Build.0 = Test|Any CPU
3540
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3641
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
3742
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
3843
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
45+
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Staging|Any CPU.Build.0 = Staging|Any CPU
3946
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Test|Any CPU.ActiveCfg = Test|Any CPU
4047
{EE709C23-849D-43C5-9F47-0B8D8DDB43D8}.Test|Any CPU.Build.0 = Test|Any CPU
4148
{B7534554-AB6C-44AC-BF34-424DBE596216}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4249
{B7534554-AB6C-44AC-BF34-424DBE596216}.Debug|Any CPU.Build.0 = Debug|Any CPU
4350
{B7534554-AB6C-44AC-BF34-424DBE596216}.Release|Any CPU.ActiveCfg = Release|Any CPU
4451
{B7534554-AB6C-44AC-BF34-424DBE596216}.Release|Any CPU.Build.0 = Release|Any CPU
52+
{B7534554-AB6C-44AC-BF34-424DBE596216}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
53+
{B7534554-AB6C-44AC-BF34-424DBE596216}.Staging|Any CPU.Build.0 = Staging|Any CPU
4554
{B7534554-AB6C-44AC-BF34-424DBE596216}.Test|Any CPU.ActiveCfg = Test|Any CPU
4655
{B7534554-AB6C-44AC-BF34-424DBE596216}.Test|Any CPU.Build.0 = Test|Any CPU
4756
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4857
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Debug|Any CPU.Build.0 = Debug|Any CPU
4958
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Release|Any CPU.ActiveCfg = Release|Any CPU
5059
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Release|Any CPU.Build.0 = Release|Any CPU
60+
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
61+
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Staging|Any CPU.Build.0 = Staging|Any CPU
5162
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Test|Any CPU.ActiveCfg = Test|Any CPU
5263
{DAA0A504-7ED7-4906-9D6B-FB566AE47084}.Test|Any CPU.Build.0 = Test|Any CPU
5364
EndGlobalSection

src/Server.Owin/Server.Owin.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@
3838
<ErrorReport>prompt</ErrorReport>
3939
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4040
</PropertyGroup>
41+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Staging|AnyCPU'">
42+
<DebugSymbols>true</DebugSymbols>
43+
<OutputPath>bin\Staging\</OutputPath>
44+
<DefineConstants>DEBUG;TRACE</DefineConstants>
45+
<DebugType>full</DebugType>
46+
<PlatformTarget>AnyCPU</PlatformTarget>
47+
<ErrorReport>prompt</ErrorReport>
48+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
49+
</PropertyGroup>
4150
<ItemGroup>
4251
<Reference Include="Microsoft.Owin, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
4352
<HintPath>..\packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll</HintPath>

src/Server/Server.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@
3939
<ErrorReport>prompt</ErrorReport>
4040
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4141
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Staging|AnyCPU'">
43+
<DebugSymbols>true</DebugSymbols>
44+
<OutputPath>bin\Staging\</OutputPath>
45+
<DefineConstants>DEBUG;TRACE</DefineConstants>
46+
<DebugType>full</DebugType>
47+
<PlatformTarget>AnyCPU</PlatformTarget>
48+
<ErrorReport>prompt</ErrorReport>
49+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
50+
</PropertyGroup>
4251
<ItemGroup>
4352
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4453
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>

src/Tests/Tests.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@
3939
<ErrorReport>prompt</ErrorReport>
4040
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4141
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Staging|AnyCPU'">
43+
<DebugSymbols>true</DebugSymbols>
44+
<OutputPath>bin\Staging\</OutputPath>
45+
<DefineConstants>DEBUG;TRACE</DefineConstants>
46+
<DebugType>full</DebugType>
47+
<PlatformTarget>AnyCPU</PlatformTarget>
48+
<ErrorReport>prompt</ErrorReport>
49+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
50+
</PropertyGroup>
4251
<ItemGroup>
4352
<Reference Include="iTextSharp">
4453
<HintPath>..\packages\iTextSharp-LGPL.4.1.6\lib\iTextSharp.dll</HintPath>

0 commit comments

Comments
 (0)