Add AzuresPackager project with .gitignore, solution and project files, core Packager.cs implementation, and sample source files. Implements basic package creation, extraction, and file handling using SharpCompress.
14 lines
452 B
XML
14 lines
452 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>AzuresPackager</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>azures04</Authors>
|
|
<RepositoryUrl>https://gitea.azures.fr/Azures04/AzuresPackager</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SharpCompress" Version="0.30.0" />
|
|
</ItemGroup>
|
|
</Project> |