Skip to content

Commit 6ad9a92

Browse files
committed
update NuGet Package version to 1.0.1 and add public key
1 parent a30df2c commit 6ad9a92

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

src/packages/OutputCacheModuleAsync.nupkg/content/Net462/web.config.install.xdt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modules>
1111
<remove name="OutputCache" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)" />
1212
<add name="OutputCache"
13-
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync"
13+
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
1414
preCondition="integratedMode" xdt:Transform="Insert" />
1515
</modules>
1616
</system.webServer>

src/packages/OutputCacheModuleAsync.nupkg/content/Net462/web.config.uninstall.xdt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modules>
66
<remove name="OutputCache" xdt:Transform="Remove" xdt:Locator="Match(name)" />
77
<add name="OutputCache"
8-
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync"
8+
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
99
preCondition="integratedMode" xdt:Transform="Remove" xdt:Locator="Match(type)" />
1010
</modules>
1111
</system.webServer>

src/packages/SQLAsyncOutputCacheProvider.nupkg/content/Net462/web.config.install.xdt

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@
1010
<caching xdt:Transform="InsertIfMissing">
1111
<outputCache defaultProvider="SQLAsyncOutputCacheProvider" xdt:Transform="InsertIfMissing">
1212
<providers>
13+
<!--
14+
Please change the connection string named "DefaultConnection" to connect to an instance
15+
of SQL Server which you will use as the data store.
16+
-->
1317
<add name="SQLAsyncOutputCacheProvider" connectionStringName="DefaultConnection"
14-
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider"
15-
xdt:Transform="InsertIfMissing" />
18+
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
19+
xdt:Transform="InsertIfMissing"/>
1620
</providers>
1721
</outputCache>
1822
</caching>

src/packages/SQLAsyncOutputCacheProvider.nupkg/content/Net462/web.config.uninstall.xdt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<outputCache defaultProvider="SQLAsyncOutputCacheProvider" xdt:Transform="Remove">
66
<providers>
77
<add name="SQLAsyncOutputCacheProvider" connectionStringName="DefaultConnection"
8-
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider"
8+
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
99
xdt:Transform="Remove" xdt:Locator="Match(type)" />
1010
</providers>
1111
</outputCache>

tools/MicrosoftAspNetOutputCache.settings.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<VersionStartYear>2016</VersionStartYear>
1212
<VersionMajor>1</VersionMajor>
1313
<VersionMinor>0</VersionMinor>
14-
<VersionRelease>0</VersionRelease>
14+
<VersionRelease>1</VersionRelease>
1515
<VersionRelease Condition="'$(BuildQuality)' != 'rtm'">$(VersionRelease)-$(BuildQuality)</VersionRelease>
1616
</PropertyGroup>
1717

1818
<PropertyGroup Label="NuGet package dependencies">
19-
<OutputCacheModuleAsyncNuGetPackageVersion>1.0.0</OutputCacheModuleAsyncNuGetPackageVersion>
19+
<OutputCacheModuleAsyncNuGetPackageVersion>1.0.1</OutputCacheModuleAsyncNuGetPackageVersion>
2020
</PropertyGroup>
2121

2222
<!-- Default properties -->

0 commit comments

Comments
 (0)