|
6 | 6 | <NoWarn>$(NoWarn);CS1591</NoWarn>
|
7 | 7 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
8 | 8 | <PackageTags>aspnetcore;aspnetcoremvc;cshtml;razor</PackageTags>
|
9 |
| - <NuspecFile>$(MSBuildProjectName).nuspec</NuspecFile> |
10 |
| - <Serviceable>true</Serviceable> |
11 | 9 | </PropertyGroup>
|
12 | 10 |
|
13 | 11 | <ItemGroup>
|
|
18 | 16 | <PackageReference Include="Microsoft.Extensions.FileProviders.Composite" Version="$(MicrosoftExtensionsFileProvidersCompositePackageVersion)" />
|
19 | 17 | </ItemGroup>
|
20 | 18 |
|
21 |
| - <ItemGroup> |
22 |
| - <SignedPackageFile Include="$(TargetPath)" PackagePath="lib/$(TargetFramework)/$(TargetFileName)" Certificate="$(AssemblySigningCertName)" /> |
23 |
| - </ItemGroup> |
24 |
| - |
25 |
| - <Target Name="PopulateNuspec" BeforeTargets="GenerateNuspec" DependsOnTargets="BuiltProjectOutputGroup;DebugSymbolsProjectOutputGroup;DocumentationProjectOutputGroup"> |
26 |
| - |
27 |
| - <PropertyGroup> |
28 |
| - <!-- Make sure we create a symbols.nupkg --> |
29 |
| - <IncludeSymbols>true</IncludeSymbols> |
30 |
| - <NuspecProperties> |
31 |
| - id=$(MSBuildProjectName); |
32 |
| - version=$(PackageVersion); |
33 |
| - authors=$(Authors); |
34 |
| - licenseUrl=$(PackageLicenseUrl); |
35 |
| - projectUrl=$(PackageProjectUrl); |
36 |
| - iconUrl=$(PackageIconUrl); |
37 |
| - copyright=$(Copyright); |
38 |
| - description=$(Description); |
39 |
| - tags=$([MSBuild]::Escape($(PackageTags))); |
40 |
| - serviceable=$(Serviceable); |
41 |
| - repositoryUrl=$(RepositoryUrl); |
42 |
| - repositoryCommit=$(RepositoryCommit); |
43 |
| - targetframework=$(TargetFramework); |
44 |
| - MicrosoftAspNetCoreRazorRuntimePackageVersion=$(MicrosoftAspNetCoreRazorRuntimePackageVersion); |
45 |
| - MicrosoftCodeAnalysisRazorPackageVersion=$(MicrosoftCodeAnalysisRazorPackageVersion); |
46 |
| - MicrosoftCodeAnalysisCSharpPackageVersion=$(MicrosoftCodeAnalysisCSharpPackageVersion); |
47 |
| - MicrosoftExtensionsCachingMemoryPackageVersion=$(MicrosoftExtensionsCachingMemoryPackageVersion); |
48 |
| - MicrosoftExtensionsFileProvidersCompositePackageVersion=$(MicrosoftExtensionsFileProvidersCompositePackageVersion); |
49 |
| - MicrosoftDiaSymReaderNativePackageVersion=$(MicrosoftDiaSymReaderNativePackageVersion); |
50 |
| - OutputBinary=@(BuiltProjectOutputGroupOutput); |
51 |
| - OutputDocumentation=@(DocumentationProjectOutputGroupOutput); |
52 |
| - OutputSymbol=@(DebugSymbolsProjectOutputGroupOutput); |
53 |
| - </NuspecProperties> |
54 |
| - </PropertyGroup> |
55 |
| - </Target> |
56 | 19 | </Project>
|
0 commit comments