diff --git a/.vs/AlwaysUpToDate/v16/.suo b/.vs/AlwaysUpToDate/v16/.suo index ec58f51..70d33fb 100644 Binary files a/.vs/AlwaysUpToDate/v16/.suo and b/.vs/AlwaysUpToDate/v16/.suo differ diff --git a/AlwaysUpToDate-Test/Program.cs b/AlwaysUpToDate-Test/Program.cs index 55b26e1..3c5f708 100644 --- a/AlwaysUpToDate-Test/Program.cs +++ b/AlwaysUpToDate-Test/Program.cs @@ -5,24 +5,29 @@ namespace AlwaysUpToDate_Test { internal class Program { - static private Updater downloader = new Updater(new TimeSpan(0, 0, 1), "https://raw.githubusercontent.com/Stone-Red-Code/Test/main/test.json", "./", false); + static private Updater updater = new Updater(new TimeSpan(0, 0, 1), "https://raw.githubusercontent.com/Stone-Red-Code/Test/main/test.json", "./", false); private static void Main(string[] args) { - downloader.Start(); - downloader.ProgressChanged += Downloader_ProgressChanged; - downloader.UpdateAvailible += Downloader_UpdateAvailible; + updater.Start(); + updater.ProgressChanged += Updater_ProgressChanged; + updater.UpdateAvailible += Updater_UpdateAvailible; Console.ReadLine(); } - private static void Downloader_UpdateAvailible(string version, string additionalInformationUrl) + private static void Updater_UpdateAvailible(string version, string additionalInformationUrl) { - Console.WriteLine("New Update: " + version); - downloader.Update(); + Console.WriteLine("New Update avalible: " + version); + Console.WriteLine("Do you want to install the new update? (y/n)"); + + char input = Console.ReadKey().KeyChar; + + if (char.ToLower(input) == 'y') + updater.Update(); } - private static void Downloader_ProgressChanged(long? totalFileSize, long totalBytesDownloaded, double? progressPercentage) + private static void Updater_ProgressChanged(long? totalFileSize, long totalBytesDownloaded, double? progressPercentage) { Console.WriteLine($"{totalBytesDownloaded}/{totalFileSize} {progressPercentage}%"); } diff --git a/AlwaysUpToDate-Test/obj/AlwaysUpToDate-Test.csproj.nuget.dgspec.json b/AlwaysUpToDate-Test/obj/AlwaysUpToDate-Test.csproj.nuget.dgspec.json index fae82d3..2f6d719 100644 --- a/AlwaysUpToDate-Test/obj/AlwaysUpToDate-Test.csproj.nuget.dgspec.json +++ b/AlwaysUpToDate-Test/obj/AlwaysUpToDate-Test.csproj.nuget.dgspec.json @@ -67,7 +67,7 @@ } }, "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate\\AlwaysUpToDate.csproj": { - "version": "1.0.0", + "version": "1.0.0.1", "restore": { "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate\\AlwaysUpToDate.csproj", "projectName": "AlwaysUpToDate", diff --git a/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.AssemblyInfo.cs b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.AssemblyInfo.cs new file mode 100644 index 0000000..7203ec9 --- /dev/null +++ b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AlwaysUpToDate-Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AlwaysUpToDate-Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("AlwaysUpToDate-Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.AssemblyInfoInputs.cache b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f4c7624 --- /dev/null +++ b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +03435e23bfe68f55cfdfd8966ae1a5c6a1a09749 diff --git a/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.assets.cache b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.assets.cache new file mode 100644 index 0000000..6e53040 Binary files /dev/null and b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.assets.cache differ diff --git a/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.csprojAssemblyReference.cache b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.csprojAssemblyReference.cache new file mode 100644 index 0000000..83ec010 Binary files /dev/null and b/AlwaysUpToDate-Test/obj/Release/netcoreapp3.1/AlwaysUpToDate-Test.csprojAssemblyReference.cache differ diff --git a/AlwaysUpToDate-Test/obj/project.assets.json b/AlwaysUpToDate-Test/obj/project.assets.json index 9e3cc00..efb6cc3 100644 --- a/AlwaysUpToDate-Test/obj/project.assets.json +++ b/AlwaysUpToDate-Test/obj/project.assets.json @@ -33,7 +33,7 @@ "lib/netcoreapp3.0/System.Text.Json.dll": {} } }, - "AlwaysUpToDate/1.0.0": { + "AlwaysUpToDate/1.0.0.1": { "type": "project", "framework": ".NETStandard,Version=v2.1", "dependencies": { @@ -129,7 +129,7 @@ "version.txt" ] }, - "AlwaysUpToDate/1.0.0": { + "AlwaysUpToDate/1.0.0.1": { "type": "project", "path": "../AlwaysUpToDate/AlwaysUpToDate.csproj", "msbuildProject": "../AlwaysUpToDate/AlwaysUpToDate.csproj" @@ -137,7 +137,7 @@ }, "projectFileDependencyGroups": { ".NETCoreApp,Version=v3.1": [ - "AlwaysUpToDate >= 1.0.0" + "AlwaysUpToDate >= 1.0.0.1" ] }, "packageFolders": { diff --git a/AlwaysUpToDate-Test/obj/project.nuget.cache b/AlwaysUpToDate-Test/obj/project.nuget.cache index 992e511..ac26ffb 100644 --- a/AlwaysUpToDate-Test/obj/project.nuget.cache +++ b/AlwaysUpToDate-Test/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "YqwqH9xiWa+JEMoKEVk5YUIYIEsq0IbV8y7N2zNzhr8CN7f1D0hmGdph5hTus1IgKonnuio0KI/wN37wF1glVQ==", + "dgSpecHash": "506ndkqhm5JO5QR0x89vPMyoFm6V5o1S159brOIO3YCZfz9Roy0LNL2x144TkHJQz6OiZJiDpBGYPsRWF4FDqw==", "success": true, "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate-Test\\AlwaysUpToDate-Test.csproj", "expectedPackageFiles": [ diff --git a/AlwaysUpToDate/AlwaysUpToDate.csproj b/AlwaysUpToDate/AlwaysUpToDate.csproj index 2557bf2..1e11a2b 100644 --- a/AlwaysUpToDate/AlwaysUpToDate.csproj +++ b/AlwaysUpToDate/AlwaysUpToDate.csproj @@ -2,11 +2,28 @@ netstandard2.1 - false + true + false + LICENSE + 1.0.0.1 + https://github.com/Stone-Red-Code/AlwaysUpToDate + A simple .NET auto updater + en + Stone_Red + Stone_Red + 1.0.0.0 + 1.0.0.0 + + + True + + + + diff --git a/AlwaysUpToDate/bin/Release/AlwaysUpToDate.1.0.0.1.nupkg b/AlwaysUpToDate/bin/Release/AlwaysUpToDate.1.0.0.1.nupkg new file mode 100644 index 0000000..655f85e Binary files /dev/null and b/AlwaysUpToDate/bin/Release/AlwaysUpToDate.1.0.0.1.nupkg differ diff --git a/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.deps.json b/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.deps.json new file mode 100644 index 0000000..aa05aea --- /dev/null +++ b/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.deps.json @@ -0,0 +1,164 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.1/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.1": {}, + ".NETStandard,Version=v2.1/": { + "AlwaysUpToDate/1.0.0.1": { + "dependencies": { + "System.Text.Json": "5.0.2" + }, + "runtime": { + "AlwaysUpToDate.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Buffers/4.5.1": { + "runtime": { + "lib/netstandard2.0/System.Buffers.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.28619.1" + } + } + }, + "System.Memory/4.5.4": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Numerics.Vectors": "4.5.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.dll": { + "assemblyVersion": "4.0.1.1", + "fileVersion": "4.6.28619.1" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Numerics.Vectors.dll": { + "assemblyVersion": "4.1.4.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Text.Encodings.Web/5.0.1": { + "runtime": { + "lib/netstandard2.1/System.Text.Encodings.Web.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.421.11614" + } + } + }, + "System.Text.Json/5.0.2": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "System.Buffers": "4.5.1", + "System.Memory": "4.5.4", + "System.Numerics.Vectors": "4.5.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encodings.Web": "5.0.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Text.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.521.16609" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "4.2.0.1", + "fileVersion": "4.6.28619.1" + } + } + } + } + }, + "libraries": { + "AlwaysUpToDate/1.0.0.1": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", + "path": "system.text.encodings.web/5.0.1", + "hashPath": "system.text.encodings.web.5.0.1.nupkg.sha512" + }, + "System.Text.Json/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I47dVIGiV6SfAyppphxqupertT/5oZkYLDCX6vC3HpOI4ZLjyoKAreUoem2ie6G0RbRuFrlqz/PcTQjfb2DOfQ==", + "path": "system.text.json/5.0.2", + "hashPath": "system.text.json.5.0.2.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.dll b/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.dll new file mode 100644 index 0000000..09b7a3f Binary files /dev/null and b/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.dll differ diff --git a/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.pdb b/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.pdb new file mode 100644 index 0000000..2662adc Binary files /dev/null and b/AlwaysUpToDate/bin/Release/netstandard2.1/AlwaysUpToDate.pdb differ diff --git a/AlwaysUpToDate/obj/AlwaysUpToDate.csproj.nuget.dgspec.json b/AlwaysUpToDate/obj/AlwaysUpToDate.csproj.nuget.dgspec.json index 7f7560a..6811c3d 100644 --- a/AlwaysUpToDate/obj/AlwaysUpToDate.csproj.nuget.dgspec.json +++ b/AlwaysUpToDate/obj/AlwaysUpToDate.csproj.nuget.dgspec.json @@ -5,7 +5,7 @@ }, "projects": { "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate\\AlwaysUpToDate.csproj": { - "version": "1.0.0", + "version": "1.0.0.1", "restore": { "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate\\AlwaysUpToDate.csproj", "projectName": "AlwaysUpToDate", diff --git a/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs b/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs index c61fdd5..6b341ee 100644 --- a/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs +++ b/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs @@ -13,11 +13,11 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("AlwaysUpToDate")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.0.1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.0.1")] [assembly: System.Reflection.AssemblyProductAttribute("AlwaysUpToDate")] [assembly: System.Reflection.AssemblyTitleAttribute("AlwaysUpToDate")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyVersionAttribute("0.0.0.1")] // Von der MSBuild WriteCodeFragment-Klasse generiert. diff --git a/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache b/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache index 2743f77..b5fe2ae 100644 --- a/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache +++ b/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache @@ -1 +1 @@ -fca546e13ae48443440731c5bf2ea827ef8de0bb +729eef2dbbdce6380998e0e78ee670cb0f175576 diff --git a/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache b/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache index dc6f03d..c89d7ba 100644 Binary files a/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache and b/AlwaysUpToDate/obj/Debug/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache differ diff --git a/AlwaysUpToDate/obj/Release/AlwaysUpToDate.1.0.0.1.nuspec b/AlwaysUpToDate/obj/Release/AlwaysUpToDate.1.0.0.1.nuspec new file mode 100644 index 0000000..17de49c --- /dev/null +++ b/AlwaysUpToDate/obj/Release/AlwaysUpToDate.1.0.0.1.nuspec @@ -0,0 +1,22 @@ + + + + AlwaysUpToDate + 1.0.0.1 + Stone_Red + false + LICENSE + https://aka.ms/deprecateLicenseUrl + A simple .NET auto updater + + + + + + + + + + + + \ No newline at end of file diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/AlwaysUpToDate/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 0000000..bc644cb --- /dev/null +++ b/AlwaysUpToDate/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = "")] diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs new file mode 100644 index 0000000..53e84a7 --- /dev/null +++ b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.AssemblyInfo.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyDescriptionAttribute("A simple .NET auto updater")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0.1")] +[assembly: System.Reflection.AssemblyProductAttribute("AlwaysUpToDate")] +[assembly: System.Reflection.AssemblyTitleAttribute("AlwaysUpToDate")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Stone-Red-Code/AlwaysUpToDate")] +[assembly: System.Resources.NeutralResourcesLanguageAttribute("en")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache new file mode 100644 index 0000000..197962b --- /dev/null +++ b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e387a4561471e22ff1970e8dffe2d7bf53682f96 diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.assets.cache b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.assets.cache new file mode 100644 index 0000000..e292eb0 Binary files /dev/null and b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.assets.cache differ diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csproj.CoreCompileInputs.cache b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b3e4e82 --- /dev/null +++ b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e5e596d7bfb3c1485529abad81b8705d5e2a4c67 diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csproj.FileListAbsolute.txt b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..dcf9a16 --- /dev/null +++ b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\bin\Release\netstandard2.1\AlwaysUpToDate.deps.json +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\bin\Release\netstandard2.1\AlwaysUpToDate.dll +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\bin\Release\netstandard2.1\AlwaysUpToDate.pdb +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\obj\Release\netstandard2.1\AlwaysUpToDate.AssemblyInfoInputs.cache +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\obj\Release\netstandard2.1\AlwaysUpToDate.AssemblyInfo.cs +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\obj\Release\netstandard2.1\AlwaysUpToDate.csproj.CoreCompileInputs.cache +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\obj\Release\netstandard2.1\AlwaysUpToDate.dll +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\obj\Release\netstandard2.1\AlwaysUpToDate.pdb +C:\Users\David\Google Drive\Programmieren\AlwaysUpToDate\AlwaysUpToDate\obj\Release\netstandard2.1\AlwaysUpToDate.csprojAssemblyReference.cache diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache new file mode 100644 index 0000000..574b1e0 Binary files /dev/null and b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.csprojAssemblyReference.cache differ diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.dll b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.dll new file mode 100644 index 0000000..09b7a3f Binary files /dev/null and b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.dll differ diff --git a/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.pdb b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.pdb new file mode 100644 index 0000000..2662adc Binary files /dev/null and b/AlwaysUpToDate/obj/Release/netstandard2.1/AlwaysUpToDate.pdb differ diff --git a/AlwaysUpToDate/obj/project.assets.json b/AlwaysUpToDate/obj/project.assets.json index 017d588..7bd8009 100644 --- a/AlwaysUpToDate/obj/project.assets.json +++ b/AlwaysUpToDate/obj/project.assets.json @@ -345,7 +345,7 @@ "C:\\Microsoft\\Xamarin\\NuGet\\": {} }, "project": { - "version": "1.0.0", + "version": "1.0.0.1", "restore": { "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate\\AlwaysUpToDate.csproj", "projectName": "AlwaysUpToDate", diff --git a/AlwaysUpToDate/obj/project.nuget.cache b/AlwaysUpToDate/obj/project.nuget.cache index 8fcaf48..76903ca 100644 --- a/AlwaysUpToDate/obj/project.nuget.cache +++ b/AlwaysUpToDate/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "N198DVJ70n2DoHwW5yiOfXF0hnmA/6XRg421LAQuyOGssGyFLBFZj30TwVxN4vOlOTprArwjXQZHBJqzum5Z/g==", + "dgSpecHash": "TrD2D1rCbz+MUCIDbCNi4OqgxK1+sPk5ONDf0agZetjulJcOokMvAN3zaHdsf/qmVDSuF+o+MTq0Z5i9E4Y6nQ==", "success": true, "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\AlwaysUpToDate\\AlwaysUpToDate\\AlwaysUpToDate.csproj", "expectedPackageFiles": [ diff --git a/LICENSE b/LICENSE index 9dd8cca..96b2e79 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Stone-Red-Code +Copyright (c) 2021 Stone_Red Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal