-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from Ken-Tucker/66-add-github-nuget-package
Update CI/CD and project files for versioning and SBOM
- Loading branch information
Showing
7 changed files
with
77 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,44 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks> | ||
<PackOnBuild>false</PackOnBuild> | ||
<PackageId>ClientNoSqlDB</PackageId> | ||
<PackageVersion>3.0</PackageVersion> | ||
<Authors>Ken Tucker</Authors> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<Owners>Ken Tucker</Owners> | ||
<PackageProjectUrl>https://github.com/vb2ae/ClientNoSqlDB</PackageProjectUrl> | ||
<Summary>Client No SQL DB that in .net standard library</Summary> | ||
<PackageTags>NoSQL .net standard .net 8</PackageTags> | ||
<Title>Client No SQL DB</Title> | ||
<Description>.net standard version of Lex.DB</Description> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<GeneratePackageOnBuild>False</GeneratePackageOnBuild> | ||
<LangVersion>11</LangVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks> | ||
<PackOnBuild>false</PackOnBuild> | ||
<PackageId>ClientNoSqlDB</PackageId> | ||
<PackageVersion>3.0</PackageVersion> | ||
<Authors>Ken Tucker</Authors> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<Owners>Ken Tucker</Owners> | ||
<PackageProjectUrl>https://github.com/vb2ae/ClientNoSqlDB</PackageProjectUrl> | ||
<Summary>Client No SQL DB that in .net standard library</Summary> | ||
<PackageTags>NoSQL .net standard .net 8</PackageTags> | ||
<Title>Client No SQL DB</Title> | ||
<Description>.net standard version of Lex.DB</Description> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<GeneratePackageOnBuild>False</GeneratePackageOnBuild> | ||
<LangVersion>11</LangVersion> | ||
<GenerateSBOM>true</GenerateSBOM> | ||
<SignAssembly>True</SignAssembly> | ||
<AssemblyOriginatorKeyFile>ClientNoSqlDB.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\.editorconfig" Link=".editorconfig" /> | ||
<None Include="..\LICENSE.md"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\.editorconfig" Link=".editorconfig" /> | ||
<None Include="..\LICENSE.md"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Sbom.Targets" Version="3.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<Version>3.7.112</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json", | ||
"version": "1.0-beta", | ||
"publicReleaseRefSpec": [ | ||
"^refs/heads/master$", | ||
"^refs/heads/v\\d+(?:\\.\\d+)?$" | ||
], | ||
"cloudBuild": { | ||
"buildNumber": { | ||
"enabled": true | ||
} | ||
} | ||
} |