Skip to content

Commit ec82784

Browse files
authored
Add netstandard2.1 support to NuGetGallery.Core and NuGet.Services.Entities (#8320)
Progress on NuGet/Engineering#3487
1 parent 400781f commit ec82784

21 files changed

Lines changed: 181 additions & 975 deletions

NuGetGallery.sln

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGetGallery", "src\NuGetGa
1414
EndProject
1515
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGetGallery.Facts", "tests\NuGetGallery.Facts\NuGetGallery.Facts.csproj", "{FDC76BEF-3360-45AC-A13E-AE8F14D343D5}"
1616
EndProject
17-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGetGallery.Core", "src\NuGetGallery.Core\NuGetGallery.Core.csproj", "{097B2CDD-9623-4C34-93C2-D373D51F5B4E}"
17+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGetGallery.Core", "src\NuGetGallery.Core\NuGetGallery.Core.csproj", "{097B2CDD-9623-4C34-93C2-D373D51F5B4E}"
1818
EndProject
1919
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGetGallery.Core.Facts", "tests\NuGetGallery.Core.Facts\NuGetGallery.Core.Facts.csproj", "{8AC9E39E-366C-47E5-80AE-38E71CD31386}"
2020
EndProject
@@ -26,7 +26,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "4. Tools", "4. Tools", "{22
2626
EndProject
2727
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GalleryTools", "src\GalleryTools\GalleryTools.csproj", "{C5849063-8CDC-4561-BA5C-7D97BD905DC3}"
2828
EndProject
29-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGet.Services.Entities", "src\NuGet.Services.Entities\NuGet.Services.Entities.csproj", "{6262F4FC-29BE-4226-B676-DB391C89D396}"
29+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.Entities", "src\NuGet.Services.Entities\NuGet.Services.Entities.csproj", "{6262F4FC-29BE-4226-B676-DB391C89D396}"
3030
EndProject
3131
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGet.Services.Entities.Tests", "tests\NuGet.Services.Entities.Tests\NuGet.Services.Entities.Tests.csproj", "{79C831E9-7C88-4B98-B084-4DE940C73FC7}"
3232
EndProject
@@ -55,6 +55,8 @@ EndProject
5555
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C643C106-D245-4F00-A486-146357812D8D}"
5656
ProjectSection(SolutionItems) = preProject
5757
.editorconfig = .editorconfig
58+
Directory.Build.props = Directory.Build.props
59+
SdkProjects.props = SdkProjects.props
5860
EndProjectSection
5961
EndProject
6062
Global

SdkProjects.props

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<Project>
2+
<!--
3+
These properties are only meant for projects using the newer SDK-based project style. Properties that are meant for
4+
all projects (both legacy .csproj and SDK-based .csproj) should be put in Directory.Build.props.
5+
-->
6+
<PropertyGroup>
7+
<Authors>.NET Foundation</Authors>
8+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
9+
<PackageProjectUrl>https://github.com/NuGet/NuGetGallery</PackageProjectUrl>
10+
<Copyright>© .NET Foundation. All rights reserved.</Copyright>
11+
<Company>.NET Foundation</Company>
12+
13+
<NeutralLanguage>en-US</NeutralLanguage>
14+
15+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
16+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
17+
<IncludeSymbols Condition="'$(IncludeSymbols)' == ''">true</IncludeSymbols>
18+
<SymbolPackageFormat Condition="'$(SymbolPackageFormat)' == ''">snupkg</SymbolPackageFormat>
19+
20+
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
21+
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
22+
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
23+
</PropertyGroup>
24+
25+
<ItemGroup>
26+
<PackageReference Include="MicroBuild.Core">
27+
<Version>0.3.0</Version>
28+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
29+
<PrivateAssets>all</PrivateAssets>
30+
</PackageReference>
31+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
32+
<PrivateAssets>all</PrivateAssets>
33+
</PackageReference>
34+
</ItemGroup>
35+
36+
<PropertyGroup>
37+
<SignPath>build</SignPath>
38+
<SignPath Condition="'$(BUILD_SOURCESDIRECTORY)' != ''">$(BUILD_SOURCESDIRECTORY)\build</SignPath>
39+
<SignPath Condition="'$(NuGetBuildPath)' != ''">$(NuGetBuildPath)</SignPath>
40+
<SignType Condition="'$(SignType)' == ''">none</SignType>
41+
</PropertyGroup>
42+
<Import Project="$(SignPath)\sign.targets" Condition="Exists('$(SignPath)\sign.targets')" />
43+
<Import Project="$(SignPath)\sign.microbuild.targets" Condition="Exists('$(SignPath)\sign.microbuild.targets')" />
44+
</Project>

build.ps1

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ param (
1010
[string]$PackageSuffix,
1111
[string]$Branch,
1212
[string]$CommitSHA,
13-
[string]$BuildBranch = '6d1fcf147a7af8b6b4db842494bc7beed3b1d0e9',
13+
[string]$BuildBranch = '2b78092c53527212b9cef813ef248e14ec11079d',
1414
[string]$VerifyMicrosoftPackageVersion = $null
1515
)
1616

@@ -90,41 +90,44 @@ Invoke-BuildStep 'Set version metadata in AssemblyInfo.cs' {
9090
(Join-Path $PSScriptRoot "src\VerifyMicrosoftPackage\Properties\AssemblyInfo.g.cs")
9191

9292
Foreach ($Path in $Paths) {
93+
# Ensure the directory exists before generating the version info file.
94+
$directory = Split-Path $Path
95+
New-Item -ItemType Directory -Force -Path $directory | Out-Null
9396
Set-VersionInfo -Path $Path -Version $SimpleVersion -Branch $Branch -Commit $CommitSHA
9497
}
9598
} `
9699
-ev +BuildErrors
97100

98101
Invoke-BuildStep 'Building solution' {
99102
$SolutionPath = Join-Path $PSScriptRoot "NuGetGallery.sln"
100-
Build-Solution $Configuration $BuildNumber -MSBuildVersion "15" $SolutionPath -SkipRestore:$SkipRestore -MSBuildProperties "/p:MvcBuildViews=true" `
103+
Build-Solution -Configuration $Configuration -BuildNumber $BuildNumber -SolutionPath $SolutionPath -SkipRestore:$SkipRestore -MSBuildProperties "/p:MvcBuildViews=true" `
101104
} `
102105
-ev +BuildErrors
103106

104107
Invoke-BuildStep 'Signing the binaries' {
105-
Sign-Binaries -Configuration $Configuration -BuildNumber $BuildNumber -MSBuildVersion "15" `
108+
Sign-Binaries -Configuration $Configuration -BuildNumber $BuildNumber `
106109
} `
107110
-ev +BuildErrors
108111

109112
Invoke-BuildStep 'Creating artifacts' { `
110113
New-ProjectPackage (Join-Path $PSScriptRoot "src\NuGetGallery.Core\NuGetGallery.Core.csproj") -Configuration $Configuration -Symbols -BuildNumber $BuildNumber -Version $SemanticVersion -PackageId "NuGetGallery.Core$PackageSuffix"
111114
New-ProjectPackage (Join-Path $PSScriptRoot "src\NuGet.Services.Entities\NuGet.Services.Entities.csproj") -Configuration $Configuration -Symbols -BuildNumber $BuildNumber -Version $SemanticVersion
112115
New-ProjectPackage (Join-Path $PSScriptRoot "src\NuGet.Services.DatabaseMigration\NuGet.Services.DatabaseMigration.csproj") -Configuration $Configuration -Symbols -BuildNumber $BuildNumber -Version $SemanticVersion
113-
New-Package (Join-Path $PSScriptRoot "src\DatabaseMigrationTools\DatabaseMigration.Gallery.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
114-
New-Package (Join-Path $PSScriptRoot "src\DatabaseMigrationTools\DatabaseMigration.SupportRequest.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
115-
New-Package (Join-Path $PSScriptRoot "src\DatabaseMigrationTools\DatabaseMigration.Validation.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
116-
New-Package (Join-Path $PSScriptRoot "src\AccountDeleter\Gallery.AccountDeleter.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
117-
New-Package (Join-Path $PSScriptRoot "src\GitHubVulnerabilities2Db\GitHubVulnerabilities2Db.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
118-
New-Package (Join-Path $PSScriptRoot "src\GalleryTools\Gallery.GalleryTools.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
119-
New-Package (Join-Path $PSScriptRoot "src\VerifyGitHubVulnerabilities\VerifyGitHubVulnerabilities.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch -MSBuildVersion "15"
116+
New-Package (Join-Path $PSScriptRoot "src\DatabaseMigrationTools\DatabaseMigration.Gallery.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
117+
New-Package (Join-Path $PSScriptRoot "src\DatabaseMigrationTools\DatabaseMigration.SupportRequest.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
118+
New-Package (Join-Path $PSScriptRoot "src\DatabaseMigrationTools\DatabaseMigration.Validation.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
119+
New-Package (Join-Path $PSScriptRoot "src\AccountDeleter\Gallery.AccountDeleter.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
120+
New-Package (Join-Path $PSScriptRoot "src\GitHubVulnerabilities2Db\GitHubVulnerabilities2Db.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
121+
New-Package (Join-Path $PSScriptRoot "src\GalleryTools\Gallery.GalleryTools.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
122+
New-Package (Join-Path $PSScriptRoot "src\VerifyGitHubVulnerabilities\VerifyGitHubVulnerabilities.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $SemanticVersion -Branch $Branch
120123

121124
if (!$VerifyMicrosoftPackageVersion) { $VerifyMicrosoftPackageVersion = $SemanticVersion }
122-
New-Package (Join-Path $PSScriptRoot "src\VerifyMicrosoftPackage\VerifyMicrosoftPackage.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $VerifyMicrosoftPackageVersion -Branch $Branch -MSBuildVersion "15"
125+
New-Package (Join-Path $PSScriptRoot "src\VerifyMicrosoftPackage\VerifyMicrosoftPackage.nuspec") -Configuration $Configuration -BuildNumber $BuildNumber -Version $VerifyMicrosoftPackageVersion -Branch $Branch
123126
} `
124127
-ev +BuildErrors
125128

126129
Invoke-BuildStep 'Signing the packages' {
127-
Sign-Packages -Configuration $Configuration -BuildNumber $BuildNumber -MSBuildVersion "15" `
130+
Sign-Packages -Configuration $Configuration -BuildNumber $BuildNumber `
128131
} `
129132
-ev +BuildErrors
130133

sign.thirdparty.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<ThirdPartyBinaries Include="Lucene.Net.Contrib.Snowball.dll" />
2727
<ThirdPartyBinaries Include="Lucene.Net.Contrib.SpellChecker.dll" />
2828
<ThirdPartyBinaries Include="Lucene.Net.dll" />
29-
<ThirdPartyBinaries Include="Markdig.dll" />
29+
<ThirdPartyBinaries Include="Markdig.Signed.dll" />
3030
<ThirdPartyBinaries Include="MarkdownSharp.dll" />
3131
<ThirdPartyBinaries Include="Microsoft.ApplicationServer.Caching.Client.dll" />
3232
<ThirdPartyBinaries Include="Microsoft.ApplicationServer.Caching.Core.dll" />

src/DatabaseMigrationTools/DatabaseMigrationTools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<PrivateAssets>all</PrivateAssets>
6666
</PackageReference>
6767
<PackageReference Include="NuGet.Services.Validation">
68-
<Version>2.74.0</Version>
68+
<Version>2.79.0</Version>
6969
</PackageReference>
7070
</ItemGroup>
7171
<ItemGroup>

src/GitHubVulnerabilities2Db/GitHubVulnerabilities2Db.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<Version>4.3.0-dev-3612825</Version>
9090
</PackageReference>
9191
<PackageReference Include="NuGet.Services.Cursor">
92-
<Version>2.74.0</Version>
92+
<Version>2.79.0</Version>
9393
</PackageReference>
9494
</ItemGroup>
9595
<ItemGroup>
Lines changed: 21 additions & 122 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,37 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<Import Project="..\..\sign.thirdparty.props" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<Import Project="..\..\SdkProjects.props" />
4+
55
<PropertyGroup>
6-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8-
<ProjectGuid>{6262F4FC-29BE-4226-B676-DB391C89D396}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>NuGet.Services.Entities</RootNamespace>
12-
<AssemblyName>NuGet.Services.Entities</AssemblyName>
13-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
<Deterministic>true</Deterministic>
6+
<TargetFrameworks>net472;netstandard2.1</TargetFrameworks>
7+
<Description>Entities used for NuGet services</Description>
168
</PropertyGroup>
17-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18-
<DebugSymbols>true</DebugSymbols>
19-
<DebugType>full</DebugType>
20-
<Optimize>false</Optimize>
21-
<OutputPath>bin\Debug\</OutputPath>
22-
<DefineConstants>DEBUG;TRACE</DefineConstants>
23-
<ErrorReport>prompt</ErrorReport>
24-
<WarningLevel>4</WarningLevel>
25-
</PropertyGroup>
26-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27-
<DebugType>pdbonly</DebugType>
28-
<Optimize>true</Optimize>
29-
<OutputPath>bin\Release\</OutputPath>
30-
<DefineConstants>TRACE</DefineConstants>
31-
<ErrorReport>prompt</ErrorReport>
32-
<WarningLevel>4</WarningLevel>
33-
</PropertyGroup>
34-
<PropertyGroup>
35-
<PackageId Condition="'$(PackageId)' == ''">$(MSBuildProjectName)</PackageId>
36-
<Authors>.NET Foundation</Authors>
37-
<PackageLicenseUrl>https://github.com/NuGet/ServerCommon/blob/master/License.md</PackageLicenseUrl>
38-
<PackageProjectUrl>https://github.com/NuGet/ServerCommon</PackageProjectUrl>
39-
<Copyright>© .NET Foundation. All rights reserved.</Copyright>
40-
<IncludeSymbols Condition="'$(IncludeSymbols)' == ''">true</IncludeSymbols>
41-
<NoPackageAnalysis Condition="'$(NoPackageAnalysis)' == ''">true</NoPackageAnalysis>
42-
</PropertyGroup>
43-
<ItemGroup>
44-
<Reference Include="System" />
45-
<Reference Include="System.ComponentModel.DataAnnotations" />
46-
<Reference Include="System.Core" />
47-
<Reference Include="Microsoft.CSharp" />
48-
</ItemGroup>
49-
<ItemGroup>
50-
<Compile Include="AccountDelete.cs" />
51-
<Compile Include="EmbeddedReadmeFileType.cs" />
52-
<Compile Include="CredentialRevocationSource.cs" />
53-
<Compile Include="Certificate.cs" />
54-
<Compile Include="Constants.cs" />
55-
<Compile Include="Credential.cs" />
56-
<Compile Include="EmailMessage.cs" />
57-
<Compile Include="EmbeddedLicenseFileType.cs" />
58-
<Compile Include="EntityException.cs" />
59-
<Compile Include="Extensions\PackageExtensions.cs" />
60-
<Compile Include="Extensions\PackageRegistrationExtensions.cs" />
61-
<Compile Include="Extensions\RoleExtensions.cs" />
62-
<Compile Include="IEntity.cs" />
63-
<Compile Include="IPackageEntity.cs" />
64-
<Compile Include="Membership.cs" />
65-
<Compile Include="MembershipRequest.cs" />
66-
<Compile Include="Organization.cs" />
67-
<Compile Include="OrganizationMigrationRequest.cs" />
68-
<Compile Include="Package.cs" />
69-
<Compile Include="PackageAuthor.cs" />
70-
<Compile Include="PackageDelete.cs" />
71-
<Compile Include="PackageDependency.cs" />
72-
<Compile Include="PackageDeprecation.cs" />
73-
<Compile Include="PackageDeprecationStatus.cs" />
74-
<Compile Include="PackageEditReadMeState.cs" />
75-
<Compile Include="PackageFramework.cs" />
76-
<Compile Include="PackageHistory.cs" />
77-
<Compile Include="PackageLicense.cs" />
78-
<Compile Include="PackageLicenseReport.cs" />
79-
<Compile Include="PackageOwnerRequest.cs" />
80-
<Compile Include="PackageRegistration.cs" />
81-
<Compile Include="PackageRename.cs" />
82-
<Compile Include="PackageStatus.cs" />
83-
<Compile Include="PackageType.cs" />
84-
<Compile Include="PackageVulnerability.cs" />
85-
<Compile Include="PackageVulnerabilitySeverity.cs" />
86-
<Compile Include="Properties\AssemblyInfo.cs" />
87-
<Compile Include="Properties\AssemblyInfo.*.cs" />
88-
<Compile Include="ReservedNamespace.cs" />
89-
<Compile Include="Role.cs" />
90-
<Compile Include="Scope.cs" />
91-
<Compile Include="Strings.Designer.cs">
92-
<AutoGen>True</AutoGen>
93-
<DesignTime>True</DesignTime>
94-
<DependentUpon>Strings.resx</DependentUpon>
95-
</Compile>
96-
<Compile Include="SymbolPackage.cs" />
97-
<Compile Include="User.cs" />
98-
<Compile Include="UserCertificate.cs" />
99-
<Compile Include="UserSecurityPolicy.cs" />
100-
<Compile Include="VulnerablePackageVersionRange.cs" />
101-
</ItemGroup>
9+
10210
<ItemGroup>
10311
<PackageReference Include="EntityFramework">
10412
<Version>6.4.0-preview3-19553-01</Version>
10513
</PackageReference>
106-
<PackageReference Include="MicroBuild.Core">
107-
<Version>0.3.0</Version>
108-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
109-
<PrivateAssets>all</PrivateAssets>
110-
</PackageReference>
11114
<PackageReference Include="Newtonsoft.Json">
112-
<Version>10.0.2</Version>
113-
</PackageReference>
114-
<PackageReference Include="NuGet.Build.Tasks.Pack">
115-
<Version>4.8.0</Version>
116-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
117-
<PrivateAssets>all</PrivateAssets>
15+
<Version>10.0.3</Version>
11816
</PackageReference>
11917
<PackageReference Include="NuGet.Frameworks">
120-
<Version>4.8.0</Version>
18+
<Version>5.8.0-preview.3.6823</Version>
12119
</PackageReference>
12220
</ItemGroup>
21+
12322
<ItemGroup>
124-
<EmbeddedResource Include="Strings.resx">
23+
<Compile Update="Strings.Designer.cs">
24+
<DesignTime>True</DesignTime>
25+
<AutoGen>True</AutoGen>
26+
<DependentUpon>Strings.resx</DependentUpon>
27+
</Compile>
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<EmbeddedResource Update="Strings.resx">
12532
<Generator>ResXFileCodeGenerator</Generator>
12633
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
12734
</EmbeddedResource>
12835
</ItemGroup>
129-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130-
<PropertyGroup>
131-
<SignPath>..\..\build</SignPath>
132-
<SignPath Condition="'$(BUILD_SOURCESDIRECTORY)' != ''">$(BUILD_SOURCESDIRECTORY)\build</SignPath>
133-
<SignPath Condition="'$(NuGetBuildPath)' != ''">$(NuGetBuildPath)</SignPath>
134-
<SignType Condition="'$(SignType)' == ''">none</SignType>
135-
</PropertyGroup>
136-
<Import Project="$(SignPath)\sign.targets" Condition="Exists('$(SignPath)\sign.targets')" />
137-
<Import Project="$(SignPath)\sign.microbuild.targets" Condition="Exists('$(SignPath)\sign.microbuild.targets')" />
138-
</Project>
36+
37+
</Project>

src/NuGet.Services.Entities/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/NuGet.Services.Entities/Strings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)