diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-09-23 20:32:21 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-09-23 20:32:21 -0400 |
commit | 819b796e8dd264fbcea72ea065944a206743693e (patch) | |
tree | e0504a81f46d06dec1f659040e8f148374efc9c9 /docs/technical | |
parent | 05727acb9b6a90fd4911e74800fe5ea0ea02050d (diff) | |
download | SMAPI-819b796e8dd264fbcea72ea065944a206743693e.tar.gz SMAPI-819b796e8dd264fbcea72ea065944a206743693e.tar.bz2 SMAPI-819b796e8dd264fbcea72ea065944a206743693e.zip |
streamline mod build config package creation
Diffstat (limited to 'docs/technical')
-rw-r--r-- | docs/technical/mod-package.md | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/docs/technical/mod-package.md b/docs/technical/mod-package.md index a1457405..c338e104 100644 --- a/docs/technical/mod-package.md +++ b/docs/technical/mod-package.md @@ -343,19 +343,13 @@ project | purpose `StardewModdingAPI.ModBuildConfig.Analyzer` | Adds C# analyzers which show code warnings in Visual Studio. `StardewModdingAPI.ModBuildConfig.Analyzer.Tests` | Unit tests for the C# analyzers. -To prepare a build of the NuGet package: -1. Install the [NuGet CLI](https://docs.microsoft.com/en-us/nuget/install-nuget-client-tools#nugetexe-cli). -1. Change the version and release notes in `package.nuspec`. -2. Rebuild the solution in _Release_ mode. -3. Open a terminal in the `bin/Pathoschild.Stardew.ModBuildConfig` folder and run this command: - ```bash - nuget.exe pack - ``` - -That will create a `Pathoschild.Stardew.ModBuildConfig-<version>.nupkg` file in the same directory -which can be uploaded to NuGet or referenced directly. +The NuGet package is generated automatically in `StardewModdingAPI.ModBuildConfig`'s `bin` folder +when you compile it. ## Release notes +## Upcoming release +* Reworked and streamlined how the package is compiled. + ### 3.2.1 Released 11 September 2020. |