Updated AzuresPackager.csproj to enable nullable reference types and implicit usings, set a custom package output path, corrected repository URL casing, and added repository type. Added a new PowerShell script (publish.ps1) to automate cleaning, building, restoring, packing, and publishing the NuGet package.
16 lines
548 B
XML
16 lines
548 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageOutputPath>./nupkg</PackageOutputPath>
|
|
<Authors>azures04</Authors>
|
|
<RepositoryUrl>https://gitea.azures.fr/azures04/AzuresPackager</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SharpCompress" Version="0.30.0" />
|
|
</ItemGroup>
|
|
</Project> |