1.1.0.0 scripts

This commit is contained in:
stam 2020-01-09 17:15:41 +03:00
parent 04ac4e201d
commit 76dd6f8344
9 changed files with 32 additions and 6 deletions

View File

@ -1 +1,4 @@
* `1.0.0.0` - initial release
* `1.0.0.0` - Initial release
* `1.1.0.0` Whats new:
* Refractoring API
* Added new info about steam and steam application

View File

@ -12,16 +12,22 @@
<license type="expression">MIT</license>
<icon>images\icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>Initial release</releaseNotes>
<releaseNotes>Refractoring API. Added new info about steam and steam application.</releaseNotes>
<description>Small helper for getting som registry keys of Steam.</description>
<copyright>Copyright ©2020 EpicMorg</copyright>
<tags>steam epicmorg path helper</tags>
<tags>steam epicmorg registry path helper</tags>
<dependencies>
<group targetFramework=".NETFramework4.8.0" />
<group targetFramework=".NETFramework4.7.2" />
<group targetFramework=".NETFramework4.6.2" />
<group targetFramework=".NETFramework4.5.2" />
</dependencies>
</metadata>
<files>
<file src="lib\net48\*.dll" target="lib\net48" />
<file src="lib\net47\*.dll" target="lib\net47" />
<file src="lib\net46\*.dll" target="lib\net46" />
<file src="lib\net45\*.dll" target="lib\net45" />
<file src="lib\net472\*.dll" target="lib\net472" />
<file src="lib\net462\*.dll" target="lib\net462" />
<file src="lib\net452\*.dll" target="lib\net452" />
<file src="images\*" target="images" />
</files>
</package>

11
nuget/build.ps1 Normal file
View File

@ -0,0 +1,11 @@
Remove-Item './lib/net48/dummy_file' -Force
Remove-Item './lib/net472/dummy_file' -Force
Remove-Item './lib/net462/dummy_file' -Force
Remove-Item './lib/net452/dummy_file' -Force
& nuget.exe pack ./EpicMorg.SteamPathsLib.nuspec
Copy-Item './dummy_file' -Destination './lib/net48/dummy_file' -Force
Copy-Item './dummy_file' -Destination './lib/net472/dummy_file' -Force
Copy-Item './dummy_file' -Destination './lib/net462/dummy_file' -Force
Copy-Item './dummy_file' -Destination './lib/net452/dummy_file' -Force

1
nuget/dummy_file Normal file
View File

@ -0,0 +1 @@
dummy_file

View File

@ -0,0 +1 @@
dummy_file

View File

@ -0,0 +1 @@
dummy_file

View File

@ -0,0 +1 @@
dummy_file

View File

@ -0,0 +1 @@
dummy_file

View File

@ -12,6 +12,7 @@
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>