From c484a0b9540dd9e459ba0a964ec101e6f321a3c8 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Thu, 28 Mar 2019 03:02:15 +0100 Subject: [PATCH] Add MakeZipWindows.ps1 PowerShell script --- MakeZipWindows.bat | 1 - MakeZipWindows.ps1 | 33 ++ packagemaker/Packagemaker.csproj | 12 - packagemaker/Program.cs | 129 ------- .../PublishProfiles/FolderProfile.pubxml | 15 - windowszipmaker/Packagemaker.deps.json | 328 ------------------ windowszipmaker/Packagemaker.dll | Bin 7680 -> 0 bytes windowszipmaker/Packagemaker.pdb | Bin 1292 -> 0 bytes .../Packagemaker.runtimeconfig.json | 9 - 9 files changed, 33 insertions(+), 494 deletions(-) delete mode 100644 MakeZipWindows.bat create mode 100644 MakeZipWindows.ps1 delete mode 100644 packagemaker/Packagemaker.csproj delete mode 100644 packagemaker/Program.cs delete mode 100644 packagemaker/Properties/PublishProfiles/FolderProfile.pubxml delete mode 100644 windowszipmaker/Packagemaker.deps.json delete mode 100644 windowszipmaker/Packagemaker.dll delete mode 100644 windowszipmaker/Packagemaker.pdb delete mode 100644 windowszipmaker/Packagemaker.runtimeconfig.json diff --git a/MakeZipWindows.bat b/MakeZipWindows.bat deleted file mode 100644 index 0f0678d58..000000000 --- a/MakeZipWindows.bat +++ /dev/null @@ -1 +0,0 @@ -dotnet %~dp0/windowszipmaker/Packagemaker.dll \ No newline at end of file diff --git a/MakeZipWindows.ps1 b/MakeZipWindows.ps1 new file mode 100644 index 000000000..4b248f53a --- /dev/null +++ b/MakeZipWindows.ps1 @@ -0,0 +1,33 @@ +#!powershell +# +$include_files = @( 'addon.py', 'addon.xml', 'LICENSE', 'README.md', 'service.py' ) +$include_paths = @( 'resources/' ) +$exclude_paths = @( 'test/' ) + +# Get addon metadata +[xml]$XmlDocument = Get-Content -LiteralPath 'addon.xml' +$name = $XmlDocument.addon.id +$version = $XmlDocument.addon.version +$git_hash = Invoke-Expression 'git rev-parse --short HEAD' +$zip_name = "$name-$version-$git_hash.zip" + +# Remove file if it exists +if (Test-Path -LiteralPath $zip_name) { + Remove-Item -LiteralPath $zip_name +} + +# Create ZIP file +Add-Type -AssemblyName System.IO.Compression + +Write-Host '= Building new package' +$zip_file = [System.IO.Compression.ZipFile]::Open($zip_name, 'Create') +ForEach ($file in $include_files) { + [System.IO.Compression.ZipFileExtensions]::CreateEntryFromFile($zip_file, $file, "$name/$file") +} +ForEach ($path in $include_paths) { + Get-ChildItem -Recurse -File -LiteralPath $path | ForEach-Object { + [System.IO.Compression.ZipFileExtensions]::CreateEntryFromFile($zip_file, $_.FullName, "$name/$(Resolve-Path -Path $_.FullName -Relative)") + } +} +$zip_file.Dispose() +Write-Host "= Successfully wrote package as: $zip_name" diff --git a/packagemaker/Packagemaker.csproj b/packagemaker/Packagemaker.csproj deleted file mode 100644 index 4e65fa88d..000000000 --- a/packagemaker/Packagemaker.csproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - Exe - netcoreapp2.1 - - - - - - - diff --git a/packagemaker/Program.cs b/packagemaker/Program.cs deleted file mode 100644 index e5d324451..000000000 --- a/packagemaker/Program.cs +++ /dev/null @@ -1,129 +0,0 @@ - using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.IO.Compression; -using System.Linq; -using System.Reflection; - -namespace plugin.video.vrt.nu.packagemaker -{ - class Program - { - private const string ZipfileName = "plugin.video.vrt.nu.zip"; - private const string SubFolderName = "plugin.video.vrt.nu"; - private const string ZipFolderName = "zip"; - - static void Main(string[] args) - { - var dllLocation = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); - - var rootFolder = Path.Combine(dllLocation, @".."); -#if DEBUG - rootFolder = Path.Combine(dllLocation, @"..", @"..", @"..", @".."); -#endif - rootFolder = Path.GetFullPath(rootFolder);//gives nicer output in logs - - var destination = Path.Combine(rootFolder, ZipFolderName, SubFolderName); - - var zipDestination = Path.Combine(rootFolder, ZipFolderName, ZipfileName); - RemoveDestinationZip(zipDestination); - - var vrtPluginRoot = Path.Combine(rootFolder, SubFolderName); - - var copiedFiles = CopyFilesToDestination(rootFolder, vrtPluginRoot, destination); - DeleteUnecesaryFiles(destination, copiedFiles); - - CreateZipFile(zipDestination, destination); - - RemoveDestinationDirectory(destination); - - Console.WriteLine($"Created zip at {Path.GetFullPath(zipDestination)}"); - Console.WriteLine("Type any key to exit"); - Console.ReadLine(); - } - - private static void CreateZipFile(string zipfileName, string destination) - { - Console.WriteLine("Creating zipfile"); - ZipFile.CreateFromDirectory(destination, zipfileName, CompressionLevel.NoCompression, true); - } - - private static void DeleteUnecesaryFiles(string destination, IEnumerable copiedFiles) - { - foreach (var itemToDelete in copiedFiles.Where(x => x.EndsWith("pyc") || x.EndsWith("pyproj") || x.EndsWith("user"))) - { - Console.WriteLine($"Deleting {itemToDelete}"); - File.Delete(itemToDelete); - } - - Console.WriteLine("Deletings tests folder"); - Directory.Delete(Path.Combine(destination, "vrtnutests"), true); - } - - private static string[] CopyFilesToDestination(string root, string pluginVideoVrtNuRoot, string destination) - { - DirectoryCopy(pluginVideoVrtNuRoot, destination, true); - - File.Copy(Path.Combine(root, "LICENSE"), Path.Combine(destination, "LICENSE")); - var copiedFiles = Directory.GetFiles(destination, string.Empty, SearchOption.AllDirectories); - return copiedFiles; - } - - private static void RemoveDestinationZip(string zipfileName) - { - if (File.Exists(zipfileName)) - { - Console.WriteLine("Removing Zipfile"); - File.Delete(zipfileName); - } - } - - private static void RemoveDestinationDirectory(string destination) - { - if (Directory.Exists(destination)) - { - Console.WriteLine("Removing Directory"); - Directory.Delete(destination, true); - } - } - - private static void DirectoryCopy(string sourceDirName, string destDirName, bool copySubDirs) - { - // Get the subdirectories for the specified directory. - DirectoryInfo dir = new DirectoryInfo(sourceDirName); - - if (!dir.Exists) - { - throw new DirectoryNotFoundException( - "Source directory does not exist or could not be found: " - + sourceDirName); - } - - DirectoryInfo[] dirs = dir.GetDirectories(); - // If the destination directory doesn't exist, create it. - if (!Directory.Exists(destDirName)) - { - Directory.CreateDirectory(destDirName); - } - - // Get the files in the directory and copy them to the new location. - FileInfo[] files = dir.GetFiles(); - foreach (FileInfo file in files) - { - string temppath = Path.Combine(destDirName, file.Name); - file.CopyTo(temppath, false); - } - - // If copying subdirectories, copy them and their contents to new location. - if (copySubDirs) - { - foreach (DirectoryInfo subdir in dirs) - { - string temppath = Path.Combine(destDirName, subdir.Name); - DirectoryCopy(subdir.FullName, temppath, copySubDirs); - } - } - } - } -} diff --git a/packagemaker/Properties/PublishProfiles/FolderProfile.pubxml b/packagemaker/Properties/PublishProfiles/FolderProfile.pubxml deleted file mode 100644 index ee5cc98cd..000000000 --- a/packagemaker/Properties/PublishProfiles/FolderProfile.pubxml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - FileSystem - Release - Any CPU - netcoreapp2.1 - bin\Debug\netcoreapp2.1\publish\ - false - <_IsPortable>true - - \ No newline at end of file diff --git a/windowszipmaker/Packagemaker.deps.json b/windowszipmaker/Packagemaker.deps.json deleted file mode 100644 index 1fa5b884c..000000000 --- a/windowszipmaker/Packagemaker.deps.json +++ /dev/null @@ -1,328 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.1", - "signature": "21f5a0be07c42fcb985ccd5538b94fab62aaa33f" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.1": { - "Packagemaker/1.0.0": { - "dependencies": { - "System.IO.Compression.ZipFile": "4.3.0" - }, - "runtime": { - "Packagemaker.dll": {} - } - }, - "runtime.native.System/4.3.0": {}, - "runtime.native.System.IO.Compression/4.3.0": {}, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "runtimeTargets": { - "runtime/unix/lib/_._": { - "rid": "unix", - "assetType": "runtime" - }, - "runtime/win/lib/_._": { - "rid": "win", - "assetType": "runtime" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - } - } - }, - "libraries": { - "Packagemaker/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/windowszipmaker/Packagemaker.dll b/windowszipmaker/Packagemaker.dll deleted file mode 100644 index 4fdc2efd7d098522108b40cc4d521c43a35d4dfc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7680 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 diff --git a/windowszipmaker/Packagemaker.pdb b/windowszipmaker/Packagemaker.pdb deleted file mode 100644 index 59dccc5f2f71b36e1427a60941d181262886757e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1292 zcmYjROKcNY6utBOJf7Hb;$RX%imNCNA%xVSQ9c6E1{{|(29%GJBBYSw&%_L|J&k;0}@yQnI4QB^2AHbH84-LT-dflW7++8shd0#zy-kXX=jCqv~Yo%ilJ^X|Rx zbKfL0>7+smacc%Xz^`xbnSAljNcz|Ki73UkKKta~C+`qiJs%TV zQ;^(MvA+-S10kRV_y}N)Igbq9LBJc?=7vs+R* zMm43|j#0@vhFPIPgKe+n3Wh~_vufyt(+FV`xJ~PpGgDeC8kITIbP(NbFFW?VTe=-N zck{J5mERn`^d>hu{vhy2+xHo|JH0J#k(#O5$lAF(Bqq#KNzZdmJ29zObj!%^@jj)D zY_VcuO?kV?lcuKI|F_^;u3EZn!#CuqXN}5gn`h7I%U*u8b-tl`oW>m^iLg zE%OS}+R>`JgT%T~(9HyPl&GvVSF`z*Y*8;~S9B{lW0^%OTTbNd&|-bFzE%IOzFohw zcjfZij<0Y0yz|@BzaBq(_4db|rTc}mxW>6?xRr(^YPw&;;ZI3wqcnF11@7U5#N(co zq|qQ3>JhHKK8X*XOKPWn0kOfutw98KA?*N$q}B_*cqt3QVY_4H=kT(wR;|F zAFKF1psM9+32%C2DXdZiix&M-Yomc+EkJSJ!y%~!s9US~$uEX6QQ$RyDQQe@v`~!q rg4ZRk^}@L&<0C24C`N%-Ijhn!xzS3af?9Xy3?o_d2-oTO=qdUS4q3#) diff --git a/windowszipmaker/Packagemaker.runtimeconfig.json b/windowszipmaker/Packagemaker.runtimeconfig.json deleted file mode 100644 index 79949366e..000000000 --- a/windowszipmaker/Packagemaker.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp2.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "2.1.0" - } - } -} \ No newline at end of file