diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs deleted file mode 100644 index 5be0d401..00000000 --- a/AssemblyInfo.cs +++ /dev/null @@ -1,11 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("279448fc-5103-475e-b209-68f3268df7b5")] diff --git a/AssemblyInfo.msbuild b/AssemblyInfo.msbuild deleted file mode 100644 index 1b7b149f..00000000 --- a/AssemblyInfo.msbuild +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/GenerateAssemblyInfo.msbuild b/GenerateAssemblyInfo.msbuild deleted file mode 100644 index 4c07f47f..00000000 --- a/GenerateAssemblyInfo.msbuild +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/HISTORY.md b/HISTORY.md index e1286feb..4b066a3d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ ## History -**This is an old file. For an up-to-date changelog, see [CHANGELOG.md](CHANGELOG.md).** +**This is an old file. For an up-to-date changelog, see [CHANGELOG.md](CHANGELOG.md) and GitHub releases.** June 2016 Steffen Xonna: Forked the library to raise the security and change some handling for an better usability for the user. diff --git a/NetSparklePackNuget.cmd b/NetSparklePackNuget.cmd deleted file mode 100644 index 279c838b..00000000 --- a/NetSparklePackNuget.cmd +++ /dev/null @@ -1,63 +0,0 @@ -@echo off - -if "%~1"=="" ( - echo Error: A version number is required - echo Usage: "NetSparklePackNuget.cmd [VersionNumber]" - exit -) - -echo Cleanup NuGet environment -rmdir /S /Q nuget\core\lib -rmdir /S /Q nuget\core\content -rmdir /S /Q nuget\core\tools -del \q nuget\core\*.nupkg -rmdir /S /Q nuget\tools\lib -rmdir /S /Q nuget\tools\content -rmdir /S /Q nuget\tools\tools -del \q nuget\tools\*.nupkg - -echo Create NuGet tree for core -mkdir nuget\core\lib -mkdir nuget\core\content -mkdir nuget\core\tools - -echo Create NuGet tree for tools -mkdir nuget\tools\lib -mkdir nuget\tools\content -mkdir nuget\tools\content\Extras -mkdir nuget\tools\tools - -echo Copy Core Buildoutput to Nuget dir -xcopy /s /q bin\Release\NetSparkle\* nuget\core\lib\net45\ -del /q nuget\core\lib\net45\*.pdb - -echo Copy Tools Buildoutput to Nuget dir -xcopy /s /q /y bin\Release\NetSparkleChecker\* nuget\tools\tools\ -xcopy /s /q /y bin\Release\DSAHelper\* nuget\tools\tools\ -xcopy /s /q /y bin\Release\NetSparkleGenerator\* nuget\tools\tools\ -xcopy /s /q /y Extras\* nuget\tools\content\Extras\ -del /q nuget\tools\tools\*.config -del /q nuget\tools\tools\*.pdb -del /q nuget\tools\tools\*.xml -del /q nuget\tools\tools\*.manifest -del /q nuget\tools\tools\*.vshost.* - -echo Moving to release directory -cd nuget - -echo Packing core nuget package -cd core -..\nuget pack NetSparkle.nuspec -Version %1 -cd .. - -echo Packing tools nuget package -cd tools -..\nuget pack NetSparkle.Tools.nuspec -Version %1 -cd .. - -echo Pushing nuget package -nuget Push core\NetSparkle.New.%1.nupkg -Source https://www.nuget.org/api/v2/package -nuget Push tools\NetSparkle.New.Tools.%1.nupkg -Source https://www.nuget.org/api/v2/package - -echo Leaving directories -cd .. \ No newline at end of file