Skip to content

Commit 64409b6

Browse files
committed
pack signed assemblies into nupkg
1 parent eeafed1 commit 64409b6

File tree

2 files changed

+25
-24
lines changed

2 files changed

+25
-24
lines changed

src/packages/SqlSessionStateProviderAsync.nupkg/Microsoft.AspNet.SessionState.SqlSessionStateProviderAsync.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<dependency id="Microsoft.AspNet.SessionState.SessionStateModule" version="$SessionStateModuleNuGetPackageVersion$" />
1111
<dependency id="EntityFramework" version="$EntityFrameworkNuGetPackageVersion$" />
1212
</dependencies>
13-
<title>Microsoft ASP.NET Async SqlSessionState Providers</title>
14-
<description>In .Net 4.6.2, asp.net enables plugin async SessionState module which is a good fit for the non-in-memory SessionState data store. This SessionState provider uses SQL Server as the data store and leverages async database operation to provide better scability.</description>
13+
<title>Microsoft ASP.NET Async SqlSessionState Provider</title>
14+
<description>In .Net 4.6.2, asp.net enables developer plug in async version of SessionState module which is a good fit for the non-in-memory SessionState data store. This SessionState provider uses SQL Server as the data store and leverages async database operation to provide better scability.</description>
1515
<summary>Async version SqlSessionState provider</summary>
1616
<language>en-US</language>
1717
<projectUrl>http://www.asp.net/</projectUrl>
Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2-
<PropertyGroup>
3-
<RepositoryRootEx Condition="'$(RepositoryRootEx)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),Microsoft.Aspnet.SessionState.sln))\</RepositoryRootEx>
4-
</PropertyGroup>
5-
6-
<PropertyGroup>
7-
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
8-
<BinPath>$(RepositoryRootEx)bin\</BinPath>
9-
<ObjPath>$(RepositoryRootEx)obj\</ObjPath>
10-
<OutputPath>$(BinPath)$(Configuration)\</OutputPath>
11-
<IntermediateOutputPath>$(ObjPath)$(Configuration)\$(MSBuildProjectName)\</IntermediateOutputPath>
12-
</PropertyGroup>
2+
<PropertyGroup>
3+
<RepositoryRootEx Condition="'$(RepositoryRootEx)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),Microsoft.Aspnet.SessionState.sln))\</RepositoryRootEx>
4+
</PropertyGroup>
135

14-
<PropertyGroup>
15-
<TestRoot>$(RepositoryRoot)\test\Microsoft.AspNet.SessionState.AsyncProviders.SqlSessionStateProviderAsync.Test</TestRoot>
16-
<BuildingTestProject Condition="$(MSBuildProjectDirectory.ToLower().Contains($(TestRoot.ToLower())))">true</BuildingTestProject>
17-
</PropertyGroup>
18-
19-
<PropertyGroup>
20-
<AssemblyPath Condition="'$(AssemblyPath)' == ''">$(OutputPath)</AssemblyPath>
21-
</PropertyGroup>
6+
<PropertyGroup>
7+
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
8+
<BinPath>$(RepositoryRootEx)bin\</BinPath>
9+
<ObjPath>$(RepositoryRootEx)obj\</ObjPath>
10+
<OutputPath>$(BinPath)$(Configuration)\</OutputPath>
11+
<IntermediateOutputPath>$(ObjPath)$(Configuration)\$(MSBuildProjectName)\</IntermediateOutputPath>
12+
</PropertyGroup>
2213

23-
<PropertyGroup>
24-
<CustomAfterProjectTargets>$(MSBuildThisFileDirectory)MicrosoftAspNetSessionState.Extensions.targets</CustomAfterProjectTargets>
25-
</PropertyGroup>
14+
<PropertyGroup>
15+
<TestRoot>$(RepositoryRoot)\test\Microsoft.AspNet.SessionState.AsyncProviders.SqlSessionStateProviderAsync.Test</TestRoot>
16+
<BuildingTestProject Condition="$(MSBuildProjectDirectory.ToLower().Contains($(TestRoot.ToLower())))">true</BuildingTestProject>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<AssemblyPath Condition="'$(CodeSignEnabled)' == 'true'">$(CodeSignOutputPath)</AssemblyPath>
21+
<AssemblyPath Condition="'$(AssemblyPath)' == ''">$(OutputPath)</AssemblyPath>
22+
</PropertyGroup>
23+
24+
<PropertyGroup>
25+
<CustomAfterProjectTargets>$(MSBuildThisFileDirectory)MicrosoftAspNetSessionState.Extensions.targets</CustomAfterProjectTargets>
26+
</PropertyGroup>
2627
</Project>

0 commit comments

Comments
 (0)