Skip to content

Commit

Permalink
Experimenting with targeting linux-arm64 for a deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Oct 2, 2023
1 parent b153db0 commit db612e4
Show file tree
Hide file tree
Showing 16 changed files with 59 additions and 66 deletions.
2 changes: 1 addition & 1 deletion SC.ExecutionHandler/Executor.cs → SC.CLI/Executor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
using System.Threading.Tasks;
using System.Xml.Serialization;

namespace SC.ExecutionHandler
namespace SC.CLI
{
/// <summary>
/// A class used to wrap the methods to enable execution by the CLI
Expand Down
2 changes: 1 addition & 1 deletion SC.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using SC.ObjectModel.IO;
using System;
using System.IO;
using SC.ExecutionHandler;
using SC.CLI;
using SC.ObjectModel.Additionals;
using SC.ObjectModel.Configuration;
using SC.ObjectModel.IO.Json;
Expand Down
7 changes: 4 additions & 3 deletions SC.CLI/SC.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\SC.ExecutionHandler\SC.ExecutionHandler.csproj" />
<ProjectReference Include="..\SC.Heuristics\SC.Heuristics.csproj" />
<ProjectReference Include="..\SC.ObjectModel\SC.ObjectModel.csproj" />
<ProjectReference Include="..\SC.Linear\SC.Linear.csproj" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion SC.DataPreparation/DataProcessor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using SC.ExecutionHandler;
using SC.CLI;
using SC.ObjectModel.Additionals;
using System;
using System.Collections.Generic;
Expand Down
6 changes: 3 additions & 3 deletions SC.DataPreparation/SC.DataPreparation.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\SC.ExecutionHandler\SC.ExecutionHandler.csproj" />
<ProjectReference Include="..\SC.CLI\SC.CLI.csproj" />
<ProjectReference Include="..\SC.ObjectModel\SC.ObjectModel.csproj" />
</ItemGroup>

Expand Down
19 changes: 0 additions & 19 deletions SC.ExecutionHandler/Program.cs

This file was deleted.

16 changes: 0 additions & 16 deletions SC.ExecutionHandler/SC.ExecutionHandler.csproj

This file was deleted.

2 changes: 1 addition & 1 deletion SC.GUI/SC.GUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>Logo.ico</ApplicationIcon>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SC.Heuristics/SC.Heuristics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SC.Linear/SC.Linear.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SC.ObjectModel/SC.ObjectModel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions SC.Playground/SC.Playground.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\SC.ExecutionHandler\SC.ExecutionHandler.csproj" />
<ProjectReference Include="..\SC.Heuristics\SC.Heuristics.csproj" />
<ProjectReference Include="..\SC.ObjectModel\SC.ObjectModel.csproj" />
<ProjectReference Include="..\SC.Service\SC.Service.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion SC.Service/Elements/JobManager.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Microsoft.Extensions.Logging;
using SC.ExecutionHandler;
using SC.CLI;
using SC.ObjectModel;
using SC.ObjectModel.Additionals;
using SC.ObjectModel.IO.Json;
Expand Down
4 changes: 2 additions & 2 deletions SC.Service/SC.Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand All @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\SC.ExecutionHandler\SC.ExecutionHandler.csproj" />
<ProjectReference Include="..\SC.CLI\SC.CLI.csproj" />
<ProjectReference Include="..\SC.ObjectModel\SC.ObjectModel.csproj" />
<ProjectReference Include="..\SC.Toolbox\SC.Toolbox.csproj" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion SC.Toolbox/SC.Toolbox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Platforms>x64;x86</Platforms>
<Version>1.0.6</Version>
<SelfContained>true</SelfContained>
</PropertyGroup>

</Project>
52 changes: 40 additions & 12 deletions SardineCan.sln
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29709.97
# Visual Studio Version 17
VisualStudioVersion = 17.7.34031.279
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SC.ObjectModel", "SC.ObjectModel\SC.ObjectModel.csproj", "{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SC.DataPreparation", "SC.DataPreparation\SC.DataPreparation.csproj", "{F5084E6D-572D-4D4C-9690-DD2E2A903555}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SC.ExecutionHandler", "SC.ExecutionHandler\SC.ExecutionHandler.csproj", "{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SC.GUI", "SC.GUI\SC.GUI.csproj", "{BB59B8FD-2409-4897-A0DC-9C5BFE232143}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SC.Heuristics", "SC.Heuristics\SC.Heuristics.csproj", "{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}"
Expand All @@ -25,88 +23,118 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SC.CLI", "SC.CLI\SC.CLI.csp
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Debug|x64.ActiveCfg = Debug|x64
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Debug|x64.Build.0 = Debug|x64
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Debug|x86.ActiveCfg = Debug|x86
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Debug|x86.Build.0 = Debug|x86
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Release|Any CPU.Build.0 = Release|Any CPU
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Release|x64.ActiveCfg = Release|x64
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Release|x64.Build.0 = Release|x64
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Release|x86.ActiveCfg = Release|x86
{DDCEB4E2-DDC6-4B9D-9506-EEC2495576ED}.Release|x86.Build.0 = Release|x86
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Debug|x64.ActiveCfg = Debug|x64
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Debug|x64.Build.0 = Debug|x64
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Debug|x86.ActiveCfg = Debug|x86
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Debug|x86.Build.0 = Debug|x86
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Release|Any CPU.Build.0 = Release|Any CPU
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Release|x64.ActiveCfg = Release|x64
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Release|x64.Build.0 = Release|x64
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Release|x86.ActiveCfg = Release|x86
{F5084E6D-572D-4D4C-9690-DD2E2A903555}.Release|x86.Build.0 = Release|x86
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Debug|x64.ActiveCfg = Debug|x64
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Debug|x64.Build.0 = Debug|x64
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Debug|x86.ActiveCfg = Debug|x86
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Debug|x86.Build.0 = Debug|x86
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Release|x64.ActiveCfg = Release|x64
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Release|x64.Build.0 = Release|x64
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Release|x86.ActiveCfg = Release|x86
{6DF3287B-A3EF-4DAA-ACB9-ECE1184191E8}.Release|x86.Build.0 = Release|x86
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Debug|x64.ActiveCfg = Debug|x64
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Debug|x64.Build.0 = Debug|x64
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Debug|x86.ActiveCfg = Debug|x86
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Debug|x86.Build.0 = Debug|x86
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Release|Any CPU.Build.0 = Release|Any CPU
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Release|x64.ActiveCfg = Release|x64
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Release|x64.Build.0 = Release|x64
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Release|x86.ActiveCfg = Release|x86
{BB59B8FD-2409-4897-A0DC-9C5BFE232143}.Release|x86.Build.0 = Release|x86
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Debug|x64.ActiveCfg = Debug|x64
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Debug|x64.Build.0 = Debug|x64
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Debug|x86.ActiveCfg = Debug|x86
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Debug|x86.Build.0 = Debug|x86
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Release|Any CPU.Build.0 = Release|Any CPU
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Release|x64.ActiveCfg = Release|x64
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Release|x64.Build.0 = Release|x64
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Release|x86.ActiveCfg = Release|x86
{8A7A6469-7BD8-49CF-94F3-2D46485A9BA4}.Release|x86.Build.0 = Release|x86
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Debug|x64.ActiveCfg = Debug|x64
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Debug|x64.Build.0 = Debug|x64
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Debug|x86.ActiveCfg = Debug|x86
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Debug|x86.Build.0 = Debug|x86
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Release|Any CPU.Build.0 = Release|Any CPU
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Release|x64.ActiveCfg = Release|x64
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Release|x64.Build.0 = Release|x64
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Release|x86.ActiveCfg = Release|x86
{42583E66-22FE-4B19-9CD1-88419DA26C48}.Release|x86.Build.0 = Release|x86
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Debug|x64.ActiveCfg = Debug|x64
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Debug|x64.Build.0 = Debug|x64
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Debug|x86.ActiveCfg = Debug|x86
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Debug|x86.Build.0 = Debug|x86
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Release|Any CPU.Build.0 = Release|Any CPU
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Release|x64.ActiveCfg = Release|x64
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Release|x64.Build.0 = Release|x64
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Release|x86.ActiveCfg = Release|x86
{8D217D8E-70EA-4A58-8DE8-E8468FADB86D}.Release|x86.Build.0 = Release|x86
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Debug|x64.ActiveCfg = Debug|x64
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Debug|x64.Build.0 = Debug|x64
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Debug|x86.ActiveCfg = Debug|x86
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Debug|x86.Build.0 = Debug|x86
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Release|Any CPU.Build.0 = Release|Any CPU
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Release|x64.ActiveCfg = Release|x64
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Release|x64.Build.0 = Release|x64
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Release|x86.ActiveCfg = Release|x86
{F382D9D0-2619-4F35-B129-0339BEC34BE1}.Release|x86.Build.0 = Release|x86
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Debug|x64.ActiveCfg = Debug|x64
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Debug|x64.Build.0 = Debug|x64
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Debug|x86.ActiveCfg = Debug|x86
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Debug|x86.Build.0 = Debug|x86
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Release|Any CPU.ActiveCfg = Release|Any CPU
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Release|Any CPU.Build.0 = Release|Any CPU
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Release|x64.ActiveCfg = Release|x64
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Release|x64.Build.0 = Release|x64
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Release|x86.ActiveCfg = Release|x86
{22C5694F-4AE3-47D6-B538-0986F6B74B32}.Release|x86.Build.0 = Release|x86
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Debug|Any CPU.Build.0 = Debug|Any CPU
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Debug|x64.ActiveCfg = Debug|x64
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Debug|x64.Build.0 = Debug|x64
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Debug|x86.ActiveCfg = Debug|x86
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Debug|x86.Build.0 = Debug|x86
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Release|Any CPU.ActiveCfg = Release|Any CPU
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Release|Any CPU.Build.0 = Release|Any CPU
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Release|x64.ActiveCfg = Release|x64
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Release|x64.Build.0 = Release|x64
{049AFB9E-E6CB-47BE-93DE-C0B67CFED040}.Release|x86.ActiveCfg = Release|x86
Expand Down

0 comments on commit db612e4

Please sign in to comment.