Add package metadata, logo, license, and readme to project configuration

This commit is contained in:
Stone_Red
2025-12-30 19:31:02 +01:00
parent a4b2e56892
commit b9d9ae7712
2 changed files with 23 additions and 3 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

+23 -3
View File
@@ -5,8 +5,30 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Authors>Stone_Red</Authors>
<PackageProjectUrl></PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<RepositoryUrl>https://github.com/Stone-Red-Code/RemoteExec</RepositoryUrl>
<PackageTags>distributed-computing, load-balancing, microservices, distributed-systems, task-queue, remote-execution</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CuteUtils" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="10.0.1" />
@@ -17,9 +39,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RemoteExec.Generators\RemoteExec.Generators.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
<ProjectReference Include="..\RemoteExec.Generators\RemoteExec.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>