diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-10-19 18:54:04 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-10-19 18:54:04 -0400 |
commit | 555e0d12241f9bda0262f513fa6bc8c55cc7d5fe (patch) | |
tree | 970f934ac540f4aeb51f5eec64bc783b94626b59 | |
parent | c6dbad2594620f9c25e7e548b813522c1e6c626d (diff) | |
download | SMAPI-555e0d12241f9bda0262f513fa6bc8c55cc7d5fe.tar.gz SMAPI-555e0d12241f9bda0262f513fa6bc8c55cc7d5fe.tar.bz2 SMAPI-555e0d12241f9bda0262f513fa6bc8c55cc7d5fe.zip |
add NuGet package spec + icon
-rw-r--r-- | assets/nuget-icon.pdn | bin | 0 -> 7401 bytes | |||
-rw-r--r-- | assets/nuget-icon.png | bin | 0 -> 5054 bytes | |||
-rw-r--r-- | build/smapi.targets (renamed from stardewvalley.targets) | 0 | ||||
-rw-r--r-- | package.nuspec | 20 |
4 files changed, 20 insertions, 0 deletions
diff --git a/assets/nuget-icon.pdn b/assets/nuget-icon.pdn Binary files differnew file mode 100644 index 00000000..7bd5c0c5 --- /dev/null +++ b/assets/nuget-icon.pdn diff --git a/assets/nuget-icon.png b/assets/nuget-icon.png Binary files differnew file mode 100644 index 00000000..611cdf88 --- /dev/null +++ b/assets/nuget-icon.png diff --git a/stardewvalley.targets b/build/smapi.targets index 1e71d06a..1e71d06a 100644 --- a/stardewvalley.targets +++ b/build/smapi.targets diff --git a/package.nuspec b/package.nuspec new file mode 100644 index 00000000..5d8e5e52 --- /dev/null +++ b/package.nuspec @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> + <metadata> + <id>Pathoschild.Stardew.ModdingBuildConfig</id> + <version>1.0-alpha</version> + <title>MSBuild config for Stardew Valley mods</title> + <authors>Pathoschild</authors> + <owners>Pathoschild</owners> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <licenseUrl>https://github.com/Pathoschild/Stardew.ModBuildConfig/blob/master/LICENSE.txt</licenseUrl> + <projectUrl>https://github.com/Pathoschild/Stardew.ModBuildConfig</projectUrl> + <iconUrl>https://raw.githubusercontent.com/Pathoschild/Stardew.ModBuildConfig/1.0/assets/nuget-icon.png</iconUrl> + <description>Automates the build configuration for a crossplatform Stardew Valley mod that uses SMAPI.</description> + <releaseNotes>Initial release</releaseNotes> + </metadata> + <files> + <file src="build/smapi.targets" target="build/Pathoschild.Stardew.ModdingBuildConfig.targets" /> + <file src="readme.md" target="" /> + </files> +</package>
\ No newline at end of file |