|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
5 | | - <Nullable>enable</Nullable> |
6 | | - <!--Until C#14 and the "field" and "extensions" keywords are available use the preview language --> |
7 | | - <LangVersion>preview</LangVersion> |
8 | | - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <!--Until C#14 and the "field" and "extensions" keywords are available use the preview language --> |
| 7 | + <LangVersion>preview</LangVersion> |
| 8 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
9 | 9 |
|
10 | | - <ItemGroup> |
11 | | - <PackageReference Include="PolySharp"> |
12 | | - <PrivateAssets>all</PrivateAssets> |
13 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
14 | | - </PackageReference> |
15 | | - <PackageReference Include="System.CommandLine" /> |
16 | | - </ItemGroup> |
| 10 | + <!--NuGet packaging support --> |
| 11 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 12 | + <MinClientVersion>4.9.0</MinClientVersion> |
| 13 | + <Authors>.NET Foundation,Ubiquity.NET</Authors> |
| 14 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 15 | + <Description>General use Support for Command line parsing based on System.CommandLine</Description> |
| 16 | + <PackageTags>Extensions,.NET,Ubiquity.NET, Console</PackageTags> |
| 17 | + <PackageReadmeFile>PackageReadMe.md</PackageReadmeFile> |
| 18 | + <PackageProjectUrl>https://github.com/UbiquityDotNET/Llvm.NET</PackageProjectUrl> |
| 19 | + <RepositoryUrl>https://github.com/UbiquityDotNET/Llvm.NET.git</RepositoryUrl> |
| 20 | + <RepositoryType>git</RepositoryType> |
| 21 | + <PackageLicenseExpression>Apache-2.0 WITH LLVM-exception</PackageLicenseExpression> |
| 22 | + <IncludeSymbols>true</IncludeSymbols> |
| 23 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 24 | + </PropertyGroup> |
17 | 25 |
|
18 | | - <ItemGroup> |
19 | | - <ProjectReference Include="..\Ubiquity.NET.Extensions\Ubiquity.NET.Extensions.csproj" /> |
20 | | - <ProjectReference Include="..\Ubiquity.NET.TextUX\Ubiquity.NET.TextUX.csproj" /> |
21 | | - </ItemGroup> |
| 26 | + <ItemGroup> |
| 27 | + <None Include="PackageReadMe.md" Pack="true" PackagePath="\" /> |
| 28 | + </ItemGroup> |
| 29 | + |
| 30 | + <ItemGroup> |
| 31 | + <PackageReference Include="PolySharp"> |
| 32 | + <PrivateAssets>all</PrivateAssets> |
| 33 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 34 | + </PackageReference> |
| 35 | + <PackageReference Include="System.CommandLine" /> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup> |
| 39 | + <ProjectReference Include="..\Ubiquity.NET.Extensions\Ubiquity.NET.Extensions.csproj" /> |
| 40 | + <ProjectReference Include="..\Ubiquity.NET.TextUX\Ubiquity.NET.TextUX.csproj" /> |
| 41 | + </ItemGroup> |
22 | 42 |
|
23 | 43 | </Project> |
0 commit comments