diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6a4d7c..0ce1e48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,10 +55,6 @@ jobs: # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:ConfigurationType=DynamicLibrary /p:Platform=arm64 WmiLight.Native\WmiLight.Native.vcxproj - - name: Build Native dynamic Lib (arm32) - # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference - run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:ConfigurationType=DynamicLibrary /p:Platform=arm WmiLight.Native\WmiLight.Native.vcxproj - - name: Build Native static Lib (x64, NoOp) # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:ConfigurationType=StaticLibrary /p:WholeProgramOptimization=false /p:Platform=x64 WmiLight.Native\WmiLight.Native.vcxproj @@ -71,10 +67,6 @@ jobs: # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:ConfigurationType=StaticLibrary /p:WholeProgramOptimization=false /p:Platform=arm64 WmiLight.Native\WmiLight.Native.vcxproj - - name: Build Native static Lib (arm32, NoOp) - # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference - run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:ConfigurationType=StaticLibrary /p:WholeProgramOptimization=false /p:Platform=arm WmiLight.Native\WmiLight.Native.vcxproj - - name: Run Unit Tests (x64) run: dotnet test -property:Platform=x64 --configuration ${{env.BUILD_CONFIGURATION}} .\WmiLight.UnitTests\WmiLight.UnitTests.csproj @@ -85,10 +77,6 @@ jobs: run: echo "::warning Unit Tests are disabled for Arm64 because there is no machine to run tests at Arm64 architecture." #run: dotnet test -property:Platform=arm64 --configuration ${{env.BUILD_CONFIGURATION}} .\WmiLight.UnitTests\WmiLight.UnitTests.csproj - - name: Run Unit Tests (arm32) - run: echo "::warning Unit Tests are disabled for Arm64 because there is no machine to run tests at Arm64 architecture." - #run: dotnet test -property:Platform=arm32 --configuration ${{env.BUILD_CONFIGURATION}} .\WmiLight.UnitTests\WmiLight.UnitTests.csproj - - name: Pack with dotnet run: dotnet pack WmiLight\WmiLight.csproj --configuration ${{env.BUILD_CONFIGURATION}} --output nuget-packages --no-build @@ -110,13 +98,11 @@ jobs: New-Item 'nuget-packages\unpacked\runtimes\win-x64\native\' -Type Directory New-Item 'nuget-packages\unpacked\runtimes\win-x86\native\' -Type Directory New-Item 'nuget-packages\unpacked\runtimes\win-arm64\native\' -Type Directory - New-Item 'nuget-packages\unpacked\runtimes\win-arm\native\' -Type Directory # create folders native libs New-Item 'nuget-packages\unpacked\lib\native\win-x64\' -Type Directory New-Item 'nuget-packages\unpacked\lib\native\win-x86\' -Type Directory New-Item 'nuget-packages\unpacked\lib\native\win-arm64\' -Type Directory - New-Item 'nuget-packages\unpacked\lib\native\win-arm\' -Type Directory # create folders for WmiLight.props and WmiLight.targets New-Item 'nuget-packages\unpacked\build\' -Type Directory @@ -125,7 +111,6 @@ jobs: Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\x64\WmiLight.Native.dll' 'nuget-packages\unpacked\runtimes\win-x64\native\' Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\x86\WmiLight.Native.dll' 'nuget-packages\unpacked\runtimes\win-x86\native\' Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\arm64\WmiLight.Native.dll' 'nuget-packages\unpacked\runtimes\win-arm64\native\' - Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\arm32\WmiLight.Native.dll' 'nuget-packages\unpacked\runtimes\win-arm\native\' # copy native libs and .pdb files for static linking Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\x64\WmiLight.Native.lib' 'nuget-packages\unpacked\lib\native\win-x64\' @@ -134,8 +119,6 @@ jobs: Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\x86\WmiLight.Native.pdb' 'nuget-packages\unpacked\lib\native\win-x86\' Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\arm64\WmiLight.Native.lib' 'nuget-packages\unpacked\lib\native\win-arm64\' Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\arm64\WmiLight.Native.pdb' 'nuget-packages\unpacked\lib\native\win-arm64\' - Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\arm32\WmiLight.Native.lib' 'nuget-packages\unpacked\lib\native\win-arm\' - Copy-Item 'WmiLight.Native\bin\${{env.BUILD_CONFIGURATION}}\arm32\WmiLight.Native.pdb' 'nuget-packages\unpacked\lib\native\win-arm\' # copy WmiLight.props and WmiLight.targets Copy-Item 'WmiLight\.nuget\.build\WmiLight.props' 'nuget-packages\unpacked\build\' diff --git a/WmiCompare/WmiCompare.csproj b/WmiCompare/WmiCompare.csproj index 611a877..4f63cbd 100644 --- a/WmiCompare/WmiCompare.csproj +++ b/WmiCompare/WmiCompare.csproj @@ -6,7 +6,7 @@ enable enable true - x64;x86;ARM64;ARM32 + x64;x86;ARM64 diff --git a/WmiLight.Native/WmiLight.Native.rc b/WmiLight.Native/WmiLight.Native.rc index c7576a1..0823430 100644 --- a/WmiLight.Native/WmiLight.Native.rc +++ b/WmiLight.Native/WmiLight.Native.rc @@ -64,10 +64,8 @@ BEGIN VALUE "FileDescription", "The native (x86) part of the WmiLight lib." #elif _x64 VALUE "FileDescription", "The native (x64) part of the WmiLight lib." -#elif _arm32 - VALUE "FileDescription", "The native (arm32) part of the WmiLight lib." #elif _arm64 - VALUE "FileDescription", "The native (arm64) part of the WmiLight lib." + VALUE "FileDescription", "The native (ARM64) part of the WmiLight lib." #else VALUE "FileDescription", "The native part of the WmiLight lib." #endif diff --git a/WmiLight.Native/WmiLight.Native.vcxproj b/WmiLight.Native/WmiLight.Native.vcxproj index 5e8360d..84f764e 100644 --- a/WmiLight.Native/WmiLight.Native.vcxproj +++ b/WmiLight.Native/WmiLight.Native.vcxproj @@ -1,10 +1,6 @@ - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -67,12 +59,6 @@ v143 Unicode - - DynamicLibrary - true - v143 - Unicode - DynamicLibrary false @@ -87,13 +73,6 @@ true Unicode - - DynamicLibrary - false - v143 - true - Unicode - @@ -111,18 +90,12 @@ - - - - - - $(ProjectDir)bin\$(Configuration)\$(PlatformTarget)\ @@ -132,10 +105,6 @@ $(ProjectDir)bin\$(Configuration)\$(PlatformTarget)\ $(ProjectDir)obj\$(Configuration)\$(PlatformTarget)\ - - $(ProjectDir)bin\$(Configuration)\ARM32\ - $(ProjectDir)obj\$(Configuration)\ARM32\ - $(ProjectDir)bin\$(Configuration)\$(PlatformTarget)\ $(ProjectDir)obj\$(Configuration)\$(PlatformTarget)\ @@ -152,10 +121,6 @@ $(ProjectDir)bin\$(Configuration)\$(PlatformTarget)\ $(ProjectDir)obj\$(Configuration)\$(PlatformTarget)\ - - $(ProjectDir)bin\$(Configuration)\ARM32\ - $(ProjectDir)obj\$(Configuration)\ARM32\ - Level3 @@ -240,26 +205,6 @@ _arm64;_UNICODE;UNICODE;%(PreprocessorDefinitions) - - - Level3 - true - _arm32;_DEBUG;WMILIGHTNATIVE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - Use - pch.h - MultiThreadedDebug - - - Windows - true - false - wbemuuid.lib;%(AdditionalDependencies) - - - _arm32;_UNICODE;UNICODE;%(PreprocessorDefinitions) - - Level3 @@ -308,30 +253,6 @@ _arm64;_UNICODE;UNICODE;%(PreprocessorDefinitions) - - - Level3 - true - true - true - _arm32;NDEBUG;WMILIGHTNATIVE_EXPORTS;_WINDOWS;_USRDLL;x64;%(PreprocessorDefinitions) - true - Use - pch.h - MultiThreaded - - - Windows - true - true - true - false - wbemuuid.lib;%(AdditionalDependencies) - - - _arm32;_UNICODE;UNICODE;%(PreprocessorDefinitions) - - @@ -344,12 +265,10 @@ Create Create - Create Create Create Create Create - Create diff --git a/WmiLight.TestApp-NetCore/WmiLight.TestApp-NetCore.csproj b/WmiLight.TestApp-NetCore/WmiLight.TestApp-NetCore.csproj index 1c9bf6e..d1f836f 100644 --- a/WmiLight.TestApp-NetCore/WmiLight.TestApp-NetCore.csproj +++ b/WmiLight.TestApp-NetCore/WmiLight.TestApp-NetCore.csproj @@ -4,7 +4,7 @@ Exe net8.0-windows WmiLight.TestApp_NetCore - x64;x86;ARM64;ARM32 + x64;x86;ARM64 True diff --git a/WmiLight.UnitTests/WmiLight.UnitTests.csproj b/WmiLight.UnitTests/WmiLight.UnitTests.csproj index dd4e65a..2921ba0 100644 --- a/WmiLight.UnitTests/WmiLight.UnitTests.csproj +++ b/WmiLight.UnitTests/WmiLight.UnitTests.csproj @@ -7,7 +7,7 @@ false true - x64;x86;ARM64;ARM32 + x64;x86;ARM64 diff --git a/WmiLight.sln b/WmiLight.sln index 76875b3..63895ca 100644 --- a/WmiLight.sln +++ b/WmiLight.sln @@ -45,144 +45,92 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WmiLight.UnitTestsGenerator EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|ARM32 = Debug|ARM32 Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM32 = Release|ARM32 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|ARM32.ActiveCfg = Debug|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|ARM32.Build.0 = Debug|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|ARM64.ActiveCfg = Debug|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|ARM64.Build.0 = Debug|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|x64.ActiveCfg = Debug|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|x64.Build.0 = Debug|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|x86.ActiveCfg = Debug|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Debug|x86.Build.0 = Debug|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|Any CPU.Build.0 = Release|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|ARM32.ActiveCfg = Release|Any CPU - {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|ARM32.Build.0 = Release|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|ARM64.ActiveCfg = Release|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|ARM64.Build.0 = Release|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|x64.ActiveCfg = Release|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|x64.Build.0 = Release|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|x86.ActiveCfg = Release|Any CPU {B1A99D31-6E34-491D-A3F5-D1500BEDE614}.Release|x86.Build.0 = Release|Any CPU - {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|Any CPU.ActiveCfg = Debug|x64 - {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|ARM32.ActiveCfg = Debug|x64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|ARM64.Build.0 = Debug|ARM64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|x64.ActiveCfg = Debug|x64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|x64.Build.0 = Debug|x64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|x86.ActiveCfg = Debug|x86 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Debug|x86.Build.0 = Debug|x86 - {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|Any CPU.ActiveCfg = Release|x64 - {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|ARM32.ActiveCfg = Release|x64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|ARM64.ActiveCfg = Release|ARM64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|ARM64.Build.0 = Release|ARM64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|x64.ActiveCfg = Release|x64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|x64.Build.0 = Release|x64 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|x86.ActiveCfg = Release|x86 {B4B62BF4-AB12-4687-8D02-DA9B5EAEF128}.Release|x86.Build.0 = Release|x86 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|Any CPU.ActiveCfg = Debug|x64 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|Any CPU.Build.0 = Debug|x64 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|ARM32.ActiveCfg = Debug|ARM32 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|ARM32.Build.0 = Debug|ARM32 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|ARM64.ActiveCfg = Debug|ARM64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|ARM64.Build.0 = Debug|ARM64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|x64.ActiveCfg = Debug|x64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|x64.Build.0 = Debug|x64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|x86.ActiveCfg = Debug|x86 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Debug|x86.Build.0 = Debug|x86 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|Any CPU.ActiveCfg = Release|x64 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|Any CPU.Build.0 = Release|x64 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|ARM32.ActiveCfg = Release|ARM32 - {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|ARM32.Build.0 = Release|ARM32 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|ARM64.ActiveCfg = Release|ARM64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|ARM64.Build.0 = Release|ARM64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|x64.ActiveCfg = Release|x64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|x64.Build.0 = Release|x64 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|x86.ActiveCfg = Release|x86 {739A7497-0916-4008-B0CB-9622E46FE9B7}.Release|x86.Build.0 = Release|x86 - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|Any CPU.ActiveCfg = Debug|x64 - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|Any CPU.Build.0 = Debug|x64 - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|ARM32.ActiveCfg = Debug|ARM - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|ARM32.Build.0 = Debug|ARM {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|ARM64.Build.0 = Debug|ARM64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|x64.ActiveCfg = Debug|x64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|x64.Build.0 = Debug|x64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|x86.ActiveCfg = Debug|Win32 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Debug|x86.Build.0 = Debug|Win32 - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|Any CPU.ActiveCfg = Release|x64 - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|Any CPU.Build.0 = Release|x64 - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|ARM32.ActiveCfg = Release|ARM - {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|ARM32.Build.0 = Release|ARM {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|ARM64.ActiveCfg = Release|ARM64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|ARM64.Build.0 = Release|ARM64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|x64.ActiveCfg = Release|x64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|x64.Build.0 = Release|x64 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|x86.ActiveCfg = Release|Win32 {76B81DB5-C9B0-40BC-A701-0766B3801ED6}.Release|x86.Build.0 = Release|Win32 - {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|Any CPU.ActiveCfg = Debug|x64 - {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|ARM32.ActiveCfg = Debug|ARM32 - {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|ARM32.Build.0 = Debug|ARM32 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|ARM64.Build.0 = Debug|ARM64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|x64.ActiveCfg = Debug|x64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|x64.Build.0 = Debug|x64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|x86.ActiveCfg = Debug|x86 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Debug|x86.Build.0 = Debug|x86 - {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|Any CPU.ActiveCfg = Release|x64 - {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|ARM32.ActiveCfg = Release|ARM32 - {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|ARM32.Build.0 = Release|ARM32 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|ARM64.ActiveCfg = Release|ARM64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|ARM64.Build.0 = Release|ARM64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|x64.ActiveCfg = Release|x64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|x64.Build.0 = Release|x64 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|x86.ActiveCfg = Release|x86 {3B555BF3-9FAF-4754-AE49-3B5A5CC16054}.Release|x86.Build.0 = Release|x86 - {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|Any CPU.ActiveCfg = Debug|x64 - {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|ARM32.ActiveCfg = Debug|ARM32 - {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|ARM32.Build.0 = Debug|ARM32 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|x64.ActiveCfg = Debug|x64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|x64.Build.0 = Debug|x64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|x86.ActiveCfg = Debug|x86 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Debug|x86.Build.0 = Debug|x86 - {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|Any CPU.ActiveCfg = Release|x64 - {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|ARM32.ActiveCfg = Release|ARM32 - {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|ARM32.Build.0 = Release|ARM32 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|ARM64.Build.0 = Release|ARM64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|x64.ActiveCfg = Release|x64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|x64.Build.0 = Release|x64 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|x86.ActiveCfg = Release|x86 {87E83A3D-D9E4-47F4-B8BC-60A24F20DE6A}.Release|x86.Build.0 = Release|x86 - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|ARM32.ActiveCfg = Debug|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|ARM32.Build.0 = Debug|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|ARM64.ActiveCfg = Debug|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|ARM64.Build.0 = Debug|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|x64.ActiveCfg = Debug|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|x64.Build.0 = Debug|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|x86.ActiveCfg = Debug|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Debug|x86.Build.0 = Debug|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|Any CPU.Build.0 = Release|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|ARM32.ActiveCfg = Release|Any CPU - {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|ARM32.Build.0 = Release|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|ARM64.ActiveCfg = Release|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|ARM64.Build.0 = Release|Any CPU {FFB59410-08FE-4CBC-ACA8-996BCE45AFF8}.Release|x64.ActiveCfg = Release|Any CPU diff --git a/WmiLight/WmiLight.csproj b/WmiLight/WmiLight.csproj index 655f138..8eb916e 100644 --- a/WmiLight/WmiLight.csproj +++ b/WmiLight/WmiLight.csproj @@ -23,7 +23,7 @@ - 6.7.0-pre + 6.7.0-pre2 WmiLight Martin Kuschnik Martin Kuschnik