Skip to content

Commit

Permalink
update NuGet Package version to 1.0.1 and add public key
Browse files Browse the repository at this point in the history
  • Loading branch information
lanlanlee2008 committed May 12, 2017
1 parent a30df2c commit 6ad9a92
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modules>
<remove name="OutputCache" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)" />
<add name="OutputCache"
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync"
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
preCondition="integratedMode" xdt:Transform="Insert" />
</modules>
</system.webServer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modules>
<remove name="OutputCache" xdt:Transform="Remove" xdt:Locator="Match(name)" />
<add name="OutputCache"
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync"
type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
preCondition="integratedMode" xdt:Transform="Remove" xdt:Locator="Match(type)" />
</modules>
</system.webServer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@
<caching xdt:Transform="InsertIfMissing">
<outputCache defaultProvider="SQLAsyncOutputCacheProvider" xdt:Transform="InsertIfMissing">
<providers>
<!--
Please change the connection string named "DefaultConnection" to connect to an instance
of SQL Server which you will use as the data store.
-->
<add name="SQLAsyncOutputCacheProvider" connectionStringName="DefaultConnection"
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider"
xdt:Transform="InsertIfMissing" />
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
xdt:Transform="InsertIfMissing"/>
</providers>
</outputCache>
</caching>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<outputCache defaultProvider="SQLAsyncOutputCacheProvider" xdt:Transform="Remove">
<providers>
<add name="SQLAsyncOutputCacheProvider" connectionStringName="DefaultConnection"
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider"
type="Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider.SQLAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.SQLAsyncOutputCacheProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
xdt:Transform="Remove" xdt:Locator="Match(type)" />
</providers>
</outputCache>
Expand Down
4 changes: 2 additions & 2 deletions tools/MicrosoftAspNetOutputCache.settings.targets
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
<VersionStartYear>2016</VersionStartYear>
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionRelease>0</VersionRelease>
<VersionRelease>1</VersionRelease>
<VersionRelease Condition="'$(BuildQuality)' != 'rtm'">$(VersionRelease)-$(BuildQuality)</VersionRelease>
</PropertyGroup>

<PropertyGroup Label="NuGet package dependencies">
<OutputCacheModuleAsyncNuGetPackageVersion>1.0.0</OutputCacheModuleAsyncNuGetPackageVersion>
<OutputCacheModuleAsyncNuGetPackageVersion>1.0.1</OutputCacheModuleAsyncNuGetPackageVersion>
</PropertyGroup>

<!-- Default properties -->
Expand Down

0 comments on commit 6ad9a92

Please sign in to comment.