Skip to content

Commit

Permalink
Add package info
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter committed Oct 23, 2024
1 parent 2629d39 commit 8eb284a
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
Binary file added Shared/Assets/PackageLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions Shared/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 🔥 Developer Sanctuary

#### The API and bots for Developer Sanctuary, all in one repo!

### 🤔 What is this?

This is the shared code library used by (most) modern Developer Sanctuary bots. It is written in C# and is available [on Nuget](https://nuget.org/packages/Republic)!
27 changes: 27 additions & 0 deletions Shared/Republic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Developer Sanctuary</Title>
<Company>The People of Developer Sanctuary</Company>
<Description>The API and bots for Developer Sanctuary, all in one repo!</Description>
<PackageProjectUrl>https://dsc.gg/devsanx</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Lamparter/DevSanx</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>devsanx</PackageTags>
<Copyright>Copyright (c) 2024 Lamparter</Copyright>
<Version>0.0.1</Version>
<PackageIcon>Assets\PackageLogo.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<None Update="Assets\PackageLogo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 8eb284a

Please sign in to comment.