Skip to content

Commit f6bd1c1

Browse files
authored
Use License Expression #319 (#378)
1 parent 17b8765 commit f6bd1c1

File tree

24 files changed

+23
-27
lines changed

24 files changed

+23
-27
lines changed

build/Katana.version.targets

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<BuildQuality>rtw</BuildQuality>
1212
<BuildDate>90831</BuildDate>
1313
<BranchSuffix></BranchSuffix>
14-
<Eula>https://raw.githubusercontent.com/aspnet/AspNetKatana/v4.0.1/LICENSE.txt</Eula>
1514
<ProjectUrl>https://github.com/aspnet/AspNetKatana/</ProjectUrl>
1615
<Tags>Microsoft OWIN Katana</Tags>
1716
</PropertyGroup>

build/Sakefile.shade

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ var AZUREAD_VERSION='5.3.0'
88
var AZUREAD_SUFFIX=''
99
var VERSION='${SHIP.VERSION}'
1010
var FULL_VERSION='${SHIP.FULL_VERSION}'
11-
var EULA='https://raw.githubusercontent.com/aspnet/AspNetKatana/v4.0.1/LICENSE.txt'
1211
var PROJECT_URL='https://github.com/aspnet/AspNetKatana/'
1312
var TAGS='Microsoft OWIN Katana'
1413

@@ -107,7 +106,6 @@ use-standard-goals features='nuget,xunit'
107106
+ " <BuildQuality>" + SHIP.MILESTONE + "</BuildQuality>" + Environment.NewLine
108107
+ " <BuildDate>" + BuildDate() + "</BuildDate>" + Environment.NewLine
109108
+ " <BranchSuffix>" + BranchSuffix() + "</BranchSuffix>" + Environment.NewLine
110-
+ " <Eula>" + EULA + "</Eula>" + Environment.NewLine
111109
+ " <ProjectUrl>" + PROJECT_URL + "</ProjectUrl>" + Environment.NewLine
112110
+ " <Tags>" + TAGS + "</Tags>" + Environment.NewLine
113111
+ " </PropertyGroup>" + Environment.NewLine
@@ -275,11 +273,10 @@ var signing='${new List<string>()}'
275273
var azureAdSuffix='${AZUREAD_SUFFIX}'
276274
set azureAdSuffix='' if='OFFICIAL_BUILD && RELEASE_BUILD && FINAL_MILESTONE'
277275

278-
var licenseUrl='${EULA}'
279276
var projectUrl='${PROJECT_URL}'
280277
var tags='${TAGS}'
281278

282-
nuget-pack nuspecFile='${file}' outputDir='${TARGET_DIR}' extra='-NoPackageAnalysis -Symbols -Properties "id=${baseName};authors=${AUTHORS};author=${AUTHORS};title=${title};description=${description};licenseUrl=${licenseUrl};projectUrl=${projectUrl};tags=${tags};azureAdVersion=${azureAdVersion};azureAdSuffix=${azureAdSuffix}"'
279+
nuget-pack nuspecFile='${file}' outputDir='${TARGET_DIR}' extra='-NoPackageAnalysis -Symbols -Properties "id=${baseName};authors=${AUTHORS};author=${AUTHORS};title=${title};description=${description};projectUrl=${projectUrl};tags=${tags};azureAdVersion=${azureAdVersion};azureAdSuffix=${azureAdSuffix}"'
283280

284281
#nuget-deploy target='deploy' description='Upload NuGet packages to gallery'
285282
var extra=''

src/Microsoft.Owin.Cors/Microsoft.Owin.Cors.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

src/Microsoft.Owin.Diagnostics/Microsoft.Owin.Diagnostics.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

src/Microsoft.Owin.FileSystems/Microsoft.Owin.FileSystems.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

src/Microsoft.Owin.Host.HttpListener/Microsoft.Owin.Host.HttpListener.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

src/Microsoft.Owin.Host.SystemWeb/Microsoft.Owin.Host.SystemWeb.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<authors>$authors$</authors>
66
<owners>$authors$</owners>
77
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
8-
<licenseUrl>$licenseUrl$</licenseUrl>
8+
<license type="expression">Apache-2.0</license>
99
<projectUrl>$projectUrl$</projectUrl>
1010
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1111
<title>$title$</title>

src/Microsoft.Owin.Hosting/Microsoft.Owin.Hosting.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

src/Microsoft.Owin.Security.ActiveDirectory/Microsoft.Owin.Security.ActiveDirectory.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

src/Microsoft.Owin.Security.Cookies/Microsoft.Owin.Security.Cookies.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authors>$authors$</authors>
77
<owners>$authors$</owners>
88
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
9-
<licenseUrl>$licenseUrl$</licenseUrl>
9+
<license type="expression">Apache-2.0</license>
1010
<projectUrl>$projectUrl$</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<title>$title$</title>

0 commit comments

Comments
 (0)