Skip to content

Commit 8094b15

Browse files
Nuget package updates.
1 parent 19e5794 commit 8094b15

File tree

7 files changed

+49
-23
lines changed

7 files changed

+49
-23
lines changed

OnixLabs.Core/OnixLabs.Core.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1313
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
1414
<PackageVersion>8.9.0</PackageVersion>
15-
<PackageLicenseUrl></PackageLicenseUrl>
15+
<PackageLicenseUrl>https://github.com/onix-labs/onixlabs-dotnet/blob/main/LICENSE</PackageLicenseUrl>
1616
</PropertyGroup>
1717
<PropertyGroup>
1818
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
@@ -31,6 +31,9 @@
3131
<PropertyGroup Condition="'$(CI)' == 'true'">
3232
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
3333
</PropertyGroup>
34+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
35+
<DebugSymbols>true</DebugSymbols>
36+
</PropertyGroup>
3437
<ItemGroup>
3538
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
3639
<PrivateAssets>all</PrivateAssets>

OnixLabs.Numerics/OnixLabs.Numerics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
1313
<PackageVersion>8.9.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
15-
<PackageLicenseUrl></PackageLicenseUrl>
15+
<PackageLicenseUrl>https://github.com/onix-labs/onixlabs-dotnet/blob/main/LICENSE</PackageLicenseUrl>
1616
</PropertyGroup>
1717
<PropertyGroup>
1818
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

OnixLabs.Security.Cryptography/OnixLabs.Security.Cryptography.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
1313
<PackageVersion>8.9.0</PackageVersion>
1414
<LangVersion>12</LangVersion>
15-
<PackageLicenseUrl></PackageLicenseUrl>
15+
<PackageLicenseUrl>https://github.com/onix-labs/onixlabs-dotnet/blob/main/LICENSE</PackageLicenseUrl>
1616
</PropertyGroup>
1717
<PropertyGroup>
1818
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
Lines changed: 37 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,52 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<Version>8.9.0</Version>
84
<Title>OnixLabs.Security</Title>
95
<Authors>ONIXLabs</Authors>
10-
<Description>ONIXLabs Security APIs for .NET</Description>
6+
<Description>ONIXLabs Security API for .NET</Description>
7+
<AssemblyVersion>8.9.0</AssemblyVersion>
8+
<NeutralLanguage>en</NeutralLanguage>
9+
<Nullable>enable</Nullable>
10+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Copyright>Copyright © ONIXLabs 2020</Copyright>
12-
<PackageProjectUrl>https://github.com/onix-labs/onixlabs-dotnet</PackageProjectUrl>
1312
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
14-
<RepositoryType>git</RepositoryType>
13+
<PackageVersion>8.9.0</PackageVersion>
14+
<LangVersion>12</LangVersion>
15+
<PackageLicenseUrl>https://github.com/onix-labs/onixlabs-dotnet/blob/main/LICENSE</PackageLicenseUrl>
16+
</PropertyGroup>
17+
<PropertyGroup>
18+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
19+
<DebugType>embedded</DebugType>
20+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
21+
<IncludeSymbols>true</IncludeSymbols>
22+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
23+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
24+
<PackageProjectUrl>https://github.com/onix-labs/onixlabs-dotnet</PackageProjectUrl>
25+
<PackageReadmeFile>README.md</PackageReadmeFile>
1526
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
16-
<AssemblyVersion>8.9.0</AssemblyVersion>
17-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
27+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
28+
<RepositoryType>git</RepositoryType>
29+
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
1830
</PropertyGroup>
19-
20-
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
21-
<DebugType>embedded</DebugType>
22-
<DocumentationFile>bin\Debug\net8.0\OnixLabs.Security.xml</DocumentationFile>
31+
<PropertyGroup Condition="'$(CI)' == 'true'">
32+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
2333
</PropertyGroup>
24-
2534
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
26-
<DebugSymbols>true</DebugSymbols>
27-
<DebugType>embedded</DebugType>
28-
<DocumentationFile>bin\Release\net8.0\OnixLabs.Security.xml</DocumentationFile>
35+
<DebugSymbols>true</DebugSymbols>
2936
</PropertyGroup>
30-
3137
<ItemGroup>
32-
<ProjectReference Include="..\OnixLabs.Core\OnixLabs.Core.csproj" />
38+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
39+
<PrivateAssets>all</PrivateAssets>
40+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
41+
</PackageReference>
42+
</ItemGroup>
43+
<ItemGroup>
44+
<None Include="..\README.md" Pack="true" PackagePath="\"/>
45+
</ItemGroup>
46+
<ItemGroup>
47+
<ProjectReference Include="..\OnixLabs.Core\OnixLabs.Core.csproj"/>
48+
</ItemGroup>
49+
<ItemGroup>
50+
<Using Include="OnixLabs.Core.Preconditions" Static="True"/>
3351
</ItemGroup>
34-
3552
</Project>

OnixLabs.Security/RandomNumberProvider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
using System;
1516
using System.Security.Cryptography;
1617

1718
namespace OnixLabs.Security;

OnixLabs.Security/SecurityToken.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
using System;
1516
using OnixLabs.Core;
1617

1718
namespace OnixLabs.Security;

OnixLabs.Security/SecurityTokenBuilder.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
using System;
16+
using System.Collections.Generic;
17+
using System.Linq;
18+
1519
namespace OnixLabs.Security;
1620

1721
/// <summary>

0 commit comments

Comments
 (0)