Renamed all project files, namespaces, classes, and references from AzuresPackager to BrikPackager for consistency and rebranding. Updated CLI usage messages and publish script to reflect the new name.
19 lines
508 B
XML
19 lines
508 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>BrikPackager</PackageId>
|
|
<Version>0.0.2</Version>
|
|
<Authors>Azures04</Authors>
|
|
|
|
<PackAsTool>false</PackAsTool>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SharpCompress" Version="0.34.1" />
|
|
</ItemGroup>
|
|
</Project> |