Skip to content

Commit b016202

Browse files
authored
Merge pull request #11 from auth0/feat/SDK-6454-publish-stage
Prepare to automate release with shiprc
2 parents a700baf + ffbf51f commit b016202

5 files changed

Lines changed: 45 additions & 18 deletions

File tree

.shiprc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"files": {
3+
"build/common.props": [],
4+
".version": []
5+
},
6+
"prefixVersion": false
7+
}

CHANGELOG.md

Whitespace-only changes.

Directory.Build.props

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,5 @@
11
<Project>
2-
<PropertyGroup Label="Version Information">
3-
<VersionPrefix>1.0.0</VersionPrefix>
4-
<VersionSuffix></VersionSuffix>
5-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
6-
<FileVersion>1.0.0.0</FileVersion>
7-
<InformationalVersion>1.0.0</InformationalVersion>
8-
</PropertyGroup>
9-
10-
<PropertyGroup Label="Common Package Metadata">
11-
<Authors>Auth0</Authors>
12-
<Company>Auth0, Inc.</Company>
13-
<Copyright>Copyright (c) 2016-2025 Auth0, Inc.</Copyright>
14-
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
15-
<PackageProjectUrl>https://github.com/auth0/aspnetcore-api</PackageProjectUrl>
16-
<RepositoryUrl>https://github.com/auth0/aspnetcore-api</RepositoryUrl>
17-
<RepositoryType>git</RepositoryType>
18-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
19-
</PropertyGroup>
2+
<Import Project="$(MSBuildThisFileDirectory)build/common.props" />
203

214
<PropertyGroup Label="Build Configuration">
225
<LangVersion>latest</LangVersion>

build/Auth0Icon.png

2.71 KB
Loading

build/common.props

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Project>
2+
<PropertyGroup>
3+
<Product>Auth0.AspNetCore.Authentication.Api</Product>
4+
<Description>Auth0 API SDK for securing your .NET API Server using tokens from Auth0</Description>
5+
<Copyright>Copyright 2025 Okta, Inc.</Copyright>
6+
<NeutralLanguage>en-US</NeutralLanguage>
7+
<Authors>Auth0</Authors>
8+
<PackageTags>auth0;authentication;oidc;oauth2;aspnetcore</PackageTags>
9+
<PackageIconUrl>https://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</PackageIconUrl>
10+
<PackageIcon>Auth0Icon.png</PackageIcon>
11+
<PackageProjectUrl>https://github.com/auth0/aspnetcore-api</PackageProjectUrl>
12+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
13+
<RepositoryType>git</RepositoryType>
14+
<RepositoryUrl>https://github.com/auth0/aspnetcore-api</RepositoryUrl>
15+
<PackageReleaseNotes>
16+
https://github.com/auth0/aspnetcore-api/blob/master/CHANGELOG.md
17+
</PackageReleaseNotes>
18+
<CLSCompliant>true</CLSCompliant>
19+
<ComVisible>false</ComVisible>
20+
</PropertyGroup>
21+
<PropertyGroup>
22+
<LangVersion>latest</LangVersion>
23+
<Version>0.0.0</Version>
24+
</PropertyGroup>
25+
<PropertyGroup>
26+
<AssemblyVersion>$(Version)</AssemblyVersion>
27+
<AssemblyFileVersion>$(Version)</AssemblyFileVersion>
28+
<InformationalVersion>$(Version)</InformationalVersion>
29+
<PackageVersion>$(Version)</PackageVersion>
30+
</PropertyGroup>
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
32+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
33+
</PropertyGroup>
34+
<ItemGroup>
35+
<None Include="../../build/Auth0Icon.png" Pack="true" Visible="false" PackagePath=""/>
36+
</ItemGroup>
37+
</Project>

0 commit comments

Comments
 (0)