Skip to content

Commit 34fcb57

Browse files
Update projects/targets to produce .snupkg packages. (#92)
1 parent 112060a commit 34fcb57

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/CosmosDBSessionStateProviderAsync/Microsoft.AspNet.SessionState.CosmosDBSessionStateProviderAsync.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2929
</PropertyGroup>
3030
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31-
<DebugType>pdbonly</DebugType>
31+
<DebugType>portable</DebugType>
3232
<Optimize>true</Optimize>
3333
<DefineConstants>TRACE</DefineConstants>
3434
<ErrorReport>prompt</ErrorReport>

src/SessionStateModule/Microsoft.AspNet.SessionState.SessionStateModule.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<DebugType>pdbonly</DebugType>
29+
<DebugType>portable</DebugType>
3030
<Optimize>true</Optimize>
3131
<DefineConstants>TRACE</DefineConstants>
3232
<ErrorReport>prompt</ErrorReport>

src/SqlSessionStateProviderAsync/Microsoft.AspNet.SessionState.SqlSessionStateProviderAsync.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
3636
</PropertyGroup>
3737
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
38-
<DebugType>pdbonly</DebugType>
38+
<DebugType>portable</DebugType>
3939
<Optimize>true</Optimize>
4040
<DefineConstants>TRACE</DefineConstants>
4141
<ErrorReport>prompt</ErrorReport>

tools/NuGetProj.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ NuGetPack: Creates a nuget package.
273273
<PropertyGroup>
274274
<NuSpecProperties>@(NuSpecProperties)</NuSpecProperties>
275275
<NuGetPackOptions Condition="'$(NuGetPackOptions)' == '' AND '$(NuGetPackSymbols)' != 'true'">-NoPackageAnalysis</NuGetPackOptions>
276-
<NuGetPackOptions Condition="'$(NuGetPackOptions)' == '' AND '$(NuGetPackSymbols)' == 'true'">-NoPackageAnalysis -NoDefaultExcludes -symbols</NuGetPackOptions>
276+
<NuGetPackOptions Condition="'$(NuGetPackOptions)' == '' AND '$(NuGetPackSymbols)' == 'true'">-NoPackageAnalysis -NoDefaultExcludes -Symbols -SymbolPackageFormat snupkg</NuGetPackOptions>
277277
<!-- BuildCommand is defined in nuget.targets file -->
278278
<BuildCommand>$(BuildCommand.Replace('-symbols', ''))</BuildCommand>
279279
<BuildCommand>$(BuildCommand.Replace('/symbols', ''))</BuildCommand>

0 commit comments

Comments
 (0)