|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 |
| - |
3 | 2 | <PropertyGroup>
|
4 | 3 | <TargetFramework>net8.0</TargetFramework>
|
5 |
| - <ImplicitUsings>enable</ImplicitUsings> |
6 |
| - <Nullable>enable</Nullable> |
7 |
| - <Version>8.9.0</Version> |
8 | 4 | <Title>OnixLabs.Security</Title>
|
9 | 5 | <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> |
11 | 11 | <Copyright>Copyright © ONIXLabs 2020</Copyright>
|
12 |
| - <PackageProjectUrl>https://github.com/onix-labs/onixlabs-dotnet</PackageProjectUrl> |
13 | 12 | <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> |
15 | 26 | <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> |
18 | 30 | </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> |
23 | 33 | </PropertyGroup>
|
24 |
| - |
25 | 34 | <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> |
29 | 36 | </PropertyGroup>
|
30 |
| - |
31 | 37 | <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"/> |
33 | 51 | </ItemGroup>
|
34 |
| - |
35 | 52 | </Project>
|
0 commit comments