Skip to content

Commit 83834a6

Browse files
committed
add nuget package for custom provider
1 parent 02b3c84 commit 83834a6

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/packages/Packages.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
2020
<ItemGroup>
2121
<NuGetProject Include="OutputCacheModuleAsync.nupkg\Microsoft.AspNet.OutputCache.OutputCacheModuleAsync.nuproj" />
22+
<NuGetProject Include="CustomOutputCacheProvider.nupkg\Microsoft.AspNet.OutputCache.CustomOutputCacheProvider.nuproj" />
2223
</ItemGroup>
2324
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2425
<Target Name="Build">

tools/CI/CITask.targets

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
</Target>
3838

3939
<ItemGroup>
40-
<BinScopeTargetFiles Include="$(OutputPath)Microsoft.AspNet.OutputCache.OutputCacheModuleAsync.dll"/>
40+
<BinScopeTargetFiles Include="$(OutputPath)Microsoft.AspNet.OutputCache.OutputCacheModuleAsync.dll"/>
41+
<BinScopeTargetFiles Include="$(OutputPath)Microsoft.AspNet.OutputCache.CustomOutputCacheProvider.dll"/>
4142
</ItemGroup>
4243

4344
<!-- CodeSign definitions -->
@@ -65,6 +66,10 @@
6566
<AuthCodeCert>10006</AuthCodeCert>
6667
<StrongNameCert>72</StrongNameCert>
6768
</CodeSign>
69+
<CodeSign Include="$(OutputPath)Microsoft.AspNet.OutputCache.CustomOutputCacheProvider.dll">
70+
<AuthCodeCert>10006</AuthCodeCert>
71+
<StrongNameCert>72</StrongNameCert>
72+
</CodeSign>
6873
</ItemGroup>
6974

7075
</Project>

0 commit comments

Comments
 (0)