Skip to content

Commit

Permalink
Add metadata and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
homothetyhk committed Jan 23, 2024
1 parent 99dd1ca commit 4458f52
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
RandomizerCore is a library for randomizer logic and algorithms originally developed for the Hollow Knight randomizer.

For documentation and articles, visit https://homothetyhk.github.io/RandomizerCore/.

The project repository can be found at https://github.com/homothetyhk/RandomizerCore/.
22 changes: 17 additions & 5 deletions RandomizerCore/RandomizerCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,21 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>true</ImplicitUsings>
<Nullable>annotations</Nullable>
<WarningsAsErrors>;NU1605</WarningsAsErrors>
<NoWarn>1701;1702;CS1591</NoWarn>
<PostBuildPath></PostBuildPath>
</PropertyGroup>


<PropertyGroup>
<Authors>homothetyhk</Authors>
<Description>A library for randomizer logic and algorithms.</Description>
<RepositoryUrl>https://github.com/homothetyhk/RandomizerCore/</RepositoryUrl>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<Import Project="LocalOverrides.targets" Condition="Exists('LocalOverrides.targets')" />

<ItemGroup Condition="'$(TargetFramework)' != 'net6.0' And '$(TargetFramework)' != 'net8.0'">
Expand All @@ -26,12 +38,12 @@
<Using Remove="System.Net.Http" />
<Using Remove="System.Threading" />
<Using Remove="System.Threading.Tasks" />
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<Using Include="RandomizerCore.LogHelper" Static="true" />
</ItemGroup>
<PropertyGroup>
<WarningsAsErrors>;NU1605</WarningsAsErrors>
<NoWarn>1701;1702;CS1591</NoWarn>
</PropertyGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(TargetFramework)' == 'net472' And '$(PostBuildPath)' != ''">
<Copy SourceFiles="$(TargetPath);$(TargetDir)$(TargetName).pdb;$(TargetDir)$(TargetName).xml" DestinationFolder="$(PostBuildPath)" SkipUnchangedFiles="true" />
Expand Down

0 comments on commit 4458f52

Please sign in to comment.