Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nes-containers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-03 19:16:55 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-03 19:16:55 +0300
commita84c08415c43dad08c73e23f75e8d2cdd99174a9 (patch)
treef1b9ae332be49aac092869ee6fb74e869a6fdac7
parent2978d01dd2ce90b46aab601357c46e2234d322a8 (diff)
Type fix
-rw-r--r--Crc32Calculator.cs2
-rw-r--r--NesContainers.csproj10
2 files changed, 11 insertions, 1 deletions
diff --git a/Crc32Calculator.cs b/Crc32Calculator.cs
index b7f29ac..417cb37 100644
--- a/Crc32Calculator.cs
+++ b/Crc32Calculator.cs
@@ -49,7 +49,7 @@
/// <summary>
/// Calculate CRC32 checksum
/// </summary>
- /// <param name="data">Input date</param>
+ /// <param name="data">Input data</param>
/// <returns>CRC32 checksum</returns>
public static uint CalculateCRC32(byte[] data)
=> CalculateCRC32(data, 0, data.Length);
diff --git a/NesContainers.csproj b/NesContainers.csproj
index d532ac6..9dead37 100644
--- a/NesContainers.csproj
+++ b/NesContainers.csproj
@@ -13,6 +13,16 @@
<PropertyGroup>
<DebugType>embedded</DebugType>
+ <GenerateDocumentationFile>True</GenerateDocumentationFile>
+ <DocumentationFile>NesContainers.xml</DocumentationFile>
+ <PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
+ <ItemGroup>
+ <None Update="README.md">
+ <Pack>True</Pack>
+ <PackagePath>\</PackagePath>
+ </None>
+ </ItemGroup>
+
</Project>