diff --git a/.github/workflows/Installer.yml b/.github/workflows/Installer.yml
index cf2e66b49..2562a4b1f 100644
--- a/.github/workflows/Installer.yml
+++ b/.github/workflows/Installer.yml
@@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: true
matrix:
- os: [windows-2019]
+ os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
@@ -21,18 +21,16 @@ jobs:
submodules: recursive
fetch-depth: 0
- # Install the .NET Core workload
- - name: Install .NET Core
- uses: actions/setup-dotnet@v1
+ - name: Install .NET
+ uses: actions/setup-dotnet@v4
with:
- dotnet-version: 5.0.x
+ dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe (Windows OS)
uses: microsoft/setup-msbuild@v1.0.2
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So the PATH can be set by this step
- if: ${{ matrix.os == 'windows-2019' }}
# Run the unit tests
- name: Restore
@@ -42,10 +40,10 @@ jobs:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So gitversion can set environment vars during the build
run: msbuild src/WeSay.sln /p:Configuration=Release
-
+
- name: Build Installer
run: msbuild build/Installer.targets /p:Configuration=Release /p:Platform=x86 /t:BuildRelease
-
+
- name: Publish Installer
uses: actions/upload-artifact@v2
with:
diff --git a/.github/workflows/PR.yml b/.github/workflows/PR.yml
index 1d9d7df2d..24d4144e6 100644
--- a/.github/workflows/PR.yml
+++ b/.github/workflows/PR.yml
@@ -11,50 +11,26 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [windows-2019]
+ os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
- uses: actions/checkout@v2.3.4
+ uses: actions/checkout@v4
with:
fetch-depth: 0
- # Install the .NET Core workload
- - name: Install .NET Core
- uses: actions/setup-dotnet@v1
+ - name: Install .NET
+ uses: actions/setup-dotnet@v4
with:
- dotnet-version: 5.0.x
+ dotnet-version: 8.0.x
- # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- - name: Setup MSBuild.exe (Windows OS)
- uses: microsoft/setup-msbuild@v1.0.2
- env:
- ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So the PATH can be set by this step
- if: ${{ matrix.os == 'windows-2019' }}
-
- # Run the unit tests
- name: Restore
- run: nuget restore src/WeSay.sln
+ run: dotnet restore
- name: Build
- env:
- ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So gitversion can set environment vars during the build
- run: msbuild src/WeSay.sln
+ run: dotnet build
- - name: Prepare to Test
- run: msbuild build/WeSay.proj /t:RestoreBuildTasks
-
- name: Test
- env:
- ACTIONS_ALLOW_UNSECURE_COMMANDS: true # So testing files and folders can be created
- run: msbuild build/WeSay.proj /t:TestOnly /p:Configuration=Debug /p:Platform="x86" /p:CI=true /v:diag
-
- - name: Test Report
- uses: jasonleenaylor/nunit-reporter@63ab85dd5da111c3f4ef95f2fb73bbe667f58db9
- if: always()
- with:
- path: output/**/TestResults.xml
- access-token: ${{ secrets.GITHUB_TOKEN }}
- reportTitle: "Test Results (${{ matrix.os }})"
- numFailures:
\ No newline at end of file
+ # space after -- before RunConfig is required
+ run: dotnet test --filter "TestCategory != SkipOnCI" --no-build -maxcpucount:1 --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true
\ No newline at end of file
diff --git a/Directory.Build.props b/Directory.Build.props
index a4fc4a16c..c34ce92bd 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -1,5 +1,6 @@
$(MSBuildThisFileDirectory)
+ false
\ No newline at end of file
diff --git a/src/WeSay.sln b/WeSay.sln
similarity index 77%
rename from src/WeSay.sln
rename to WeSay.sln
index c6b28458d..09d674d6d 100644
--- a/src/WeSay.sln
+++ b/WeSay.sln
@@ -1,67 +1,68 @@
-
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Studio 2010
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.ConfigTool", "WeSay.ConfigTool\WeSay.ConfigTool.csproj", "{54C943DB-7725-4F52-BCE4-86C3D3D5A66E}"
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.8.34511.84
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.ConfigTool", "src\WeSay.ConfigTool\WeSay.ConfigTool.csproj", "{54C943DB-7725-4F52-BCE4-86C3D3D5A66E}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.Foundation", "WeSay.Foundation\WeSay.Foundation.csproj", "{F12EB680-0990-4900-B77E-0FBF2E28A815}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.Foundation", "src\WeSay.Foundation\WeSay.Foundation.csproj", "{F12EB680-0990-4900-B77E-0FBF2E28A815}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Addin.Backup", "Addin.Backup\Addin.Backup.csproj", "{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Addin.Backup", "src\Addin.Backup\Addin.Backup.csproj", "{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.Project", "WeSay.Project\WeSay.Project.csproj", "{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.Project", "src\WeSay.Project\WeSay.Project.csproj", "{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.UI.Tests", "WeSay.UI.Tests\WeSay.UI.Tests.csproj", "{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.UI.Tests", "src\WeSay.UI.Tests\WeSay.UI.Tests.csproj", "{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LexicalTools", "LexicalTools\LexicalTools.csproj", "{87AF0B02-2983-486D-857F-D1859535C234}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LexicalTools", "src\LexicalTools\LexicalTools.csproj", "{87AF0B02-2983-486D-857F-D1859535C234}"
ProjectSection(ProjectDependencies) = postProject
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD} = {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.AddinLib", "WeSay.AddinLib\WeSay.AddinLib.csproj", "{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.AddinLib", "src\WeSay.AddinLib\WeSay.AddinLib.csproj", "{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.UI", "WeSay.UI\WeSay.UI.csproj", "{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.UI", "src\WeSay.UI\WeSay.UI.csproj", "{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.Data", "WeSay.Data\WeSay.Data.csproj", "{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.Data", "src\WeSay.Data\WeSay.Data.csproj", "{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.App", "WeSay.App\WeSay.App.csproj", "{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.App", "src\WeSay.App\WeSay.App.csproj", "{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Addin.Transform.Tests", "Addin.Transform.Tests\Addin.Transform.Tests.csproj", "{19310CA3-6653-45E0-9EC8-F824629E2AD8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Addin.Transform.Tests", "src\Addin.Transform.Tests\Addin.Transform.Tests.csproj", "{19310CA3-6653-45E0-9EC8-F824629E2AD8}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LexicalModel", "LexicalModel\LexicalModel.csproj", "{5F61C809-B6C0-4567-9603-B2198E1AD038}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LexicalModel", "src\LexicalModel\LexicalModel.csproj", "{5F61C809-B6C0-4567-9603-B2198E1AD038}"
ProjectSection(ProjectDependencies) = postProject
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD} = {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.AddinLib.Tests", "WeSay.AddinLib.Tests\WeSay.AddinLib.Tests.csproj", "{74DF4C01-660C-4CF4-9343-9330337BCBEA}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.AddinLib.Tests", "src\WeSay.AddinLib.Tests\WeSay.AddinLib.Tests.csproj", "{74DF4C01-660C-4CF4-9343-9330337BCBEA}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LexicalModel.Tests", "LexicalModel.Tests\LexicalModel.Tests.csproj", "{123D695C-0D5D-46E5-893F-39EC4E0B01B8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LexicalModel.Tests", "src\LexicalModel.Tests\LexicalModel.Tests.csproj", "{123D695C-0D5D-46E5-893F-39EC4E0B01B8}"
ProjectSection(ProjectDependencies) = postProject
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD} = {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Addin.Backup.Tests", "Addin.Backup.Tests\Addin.Backup.Tests.csproj", "{EF37C48F-EABC-478B-B7C1-2BDB33968A21}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Addin.Backup.Tests", "src\Addin.Backup.Tests\Addin.Backup.Tests.csproj", "{EF37C48F-EABC-478B-B7C1-2BDB33968A21}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Addin.Transform", "Addin.Transform\Addin.Transform.csproj", "{9D196637-2D50-4604-A310-378083CEA809}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Addin.Transform", "src\Addin.Transform\Addin.Transform.csproj", "{9D196637-2D50-4604-A310-378083CEA809}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.ConfigTool.Tests", "WeSay.ConfigTool.Tests\WeSay.ConfigTool.Tests.csproj", "{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.ConfigTool.Tests", "src\WeSay.ConfigTool.Tests\WeSay.ConfigTool.Tests.csproj", "{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.Project.Tests", "WeSay.Project.Tests\WeSay.Project.Tests.csproj", "{F644C902-A952-4797-9E2D-19D6051DD032}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.Project.Tests", "src\WeSay.Project.Tests\WeSay.Project.Tests.csproj", "{F644C902-A952-4797-9E2D-19D6051DD032}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.Data.Tests", "WeSay.Data.Tests\WeSay.Data.Tests.csproj", "{8491FEEE-C311-4B64-BB30-A1F1C1802F45}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.Data.Tests", "src\WeSay.Data.Tests\WeSay.Data.Tests.csproj", "{8491FEEE-C311-4B64-BB30-A1F1C1802F45}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleDataProcessor", "Lift2WeSay\SampleDataProcessor.csproj", "{4408C857-0371-42BF-A635-E23C8A99A803}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleDataProcessor", "src\Lift2WeSay\SampleDataProcessor.csproj", "{4408C857-0371-42BF-A635-E23C8A99A803}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.App.Tests", "WeSay.App.Tests\WeSay.App.Tests.csproj", "{7DA57D98-255B-46DE-BF94-D163695A0568}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.App.Tests", "src\WeSay.App.Tests\WeSay.App.Tests.csproj", "{7DA57D98-255B-46DE-BF94-D163695A0568}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LexicalTools.Tests", "LexicalTools.Tests\LexicalTools.Tests.csproj", "{9936180C-90A7-467C-B761-EC184EFE1F9F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LexicalTools.Tests", "src\LexicalTools.Tests\LexicalTools.Tests.csproj", "{9936180C-90A7-467C-B761-EC184EFE1F9F}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeSay.TestUtilities", "WeSay.TestUtilities\WeSay.TestUtilities.csproj", "{FEC3014D-0067-4D59-A838-3B046EC3C352}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeSay.TestUtilities", "src\WeSay.TestUtilities\WeSay.TestUtilities.csproj", "{FEC3014D-0067-4D59-A838-3B046EC3C352}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DEFF1312-21E7-47EA-8EBF-0B3705FDD564}"
ProjectSection(SolutionItems) = preProject
- .nuget\packages.config = .nuget\packages.config
+ src\.nuget\packages.config = src\.nuget\packages.config
EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiftWordList2Json", "LiftWordList2Json\LiftWordList2Json.csproj", "{4498EAF7-1736-40C3-AD20-6B2CD8D935DB}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LiftWordList2Json", "src\LiftWordList2Json\LiftWordList2Json.csproj", "{4498EAF7-1736-40C3-AD20-6B2CD8D935DB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -73,265 +74,266 @@ Global
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|x86.Build.0 = Debug|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|Any CPU.Build.0 = Debug|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|x86.ActiveCfg = Release|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|x86.Build.0 = Release|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|x86.ActiveCfg = Release|Any CPU
+ {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|x86.Build.0 = Release|Any CPU
{F12EB680-0990-4900-B77E-0FBF2E28A815}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F12EB680-0990-4900-B77E-0FBF2E28A815}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {F12EB680-0990-4900-B77E-0FBF2E28A815}.Debug|x86.ActiveCfg = Debug|x86
- {F12EB680-0990-4900-B77E-0FBF2E28A815}.Debug|x86.Build.0 = Debug|x86
+ {F12EB680-0990-4900-B77E-0FBF2E28A815}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {F12EB680-0990-4900-B77E-0FBF2E28A815}.Debug|x86.Build.0 = Debug|Any CPU
{F12EB680-0990-4900-B77E-0FBF2E28A815}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
{F12EB680-0990-4900-B77E-0FBF2E28A815}.minimal|Any CPU.Build.0 = Debug|Any CPU
- {F12EB680-0990-4900-B77E-0FBF2E28A815}.minimal|x86.ActiveCfg = Release|x86
- {F12EB680-0990-4900-B77E-0FBF2E28A815}.minimal|x86.Build.0 = Release|x86
+ {F12EB680-0990-4900-B77E-0FBF2E28A815}.minimal|x86.ActiveCfg = Release|Any CPU
+ {F12EB680-0990-4900-B77E-0FBF2E28A815}.minimal|x86.Build.0 = Release|Any CPU
{F12EB680-0990-4900-B77E-0FBF2E28A815}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F12EB680-0990-4900-B77E-0FBF2E28A815}.Release|Any CPU.Build.0 = Release|Any CPU
- {F12EB680-0990-4900-B77E-0FBF2E28A815}.Release|x86.ActiveCfg = Release|x86
- {F12EB680-0990-4900-B77E-0FBF2E28A815}.Release|x86.Build.0 = Release|x86
+ {F12EB680-0990-4900-B77E-0FBF2E28A815}.Release|x86.ActiveCfg = Release|Any CPU
+ {F12EB680-0990-4900-B77E-0FBF2E28A815}.Release|x86.Build.0 = Release|Any CPU
{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Debug|x86.ActiveCfg = Debug|x86
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Debug|x86.Build.0 = Debug|x86
+ {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Debug|x86.Build.0 = Debug|Any CPU
{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.minimal|x86.ActiveCfg = Release|x86
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.minimal|x86.Build.0 = Release|x86
+ {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.minimal|x86.ActiveCfg = Release|Any CPU
+ {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.minimal|x86.Build.0 = Release|Any CPU
{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Release|Any CPU.Build.0 = Release|Any CPU
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Release|x86.ActiveCfg = Release|x86
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Release|x86.Build.0 = Release|x86
+ {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Release|x86.ActiveCfg = Release|Any CPU
+ {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}.Release|x86.Build.0 = Release|Any CPU
{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Debug|x86.ActiveCfg = Debug|x86
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Debug|x86.Build.0 = Debug|x86
+ {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Debug|x86.Build.0 = Debug|Any CPU
{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.minimal|x86.ActiveCfg = Release|x86
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.minimal|x86.Build.0 = Release|x86
+ {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.minimal|x86.ActiveCfg = Release|Any CPU
+ {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.minimal|x86.Build.0 = Release|Any CPU
{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Release|Any CPU.Build.0 = Release|Any CPU
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Release|x86.ActiveCfg = Release|x86
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Release|x86.Build.0 = Release|x86
+ {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Release|x86.ActiveCfg = Release|Any CPU
+ {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}.Release|x86.Build.0 = Release|Any CPU
{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Debug|x86.ActiveCfg = Debug|x86
- {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Debug|x86.Build.0 = Debug|x86
+ {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Debug|x86.Build.0 = Debug|Any CPU
{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.minimal|x86.ActiveCfg = Release|x86
- {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.minimal|x86.Build.0 = Release|x86
+ {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.minimal|x86.ActiveCfg = Release|Any CPU
+ {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.minimal|x86.Build.0 = Release|Any CPU
{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Release|Any CPU.Build.0 = Release|Any CPU
- {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Release|x86.ActiveCfg = Release|x86
- {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Release|x86.Build.0 = Release|x86
+ {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Release|x86.ActiveCfg = Release|Any CPU
+ {6AED6785-CC6F-4A6A-BDB1-1895C6DA1090}.Release|x86.Build.0 = Release|Any CPU
{87AF0B02-2983-486D-857F-D1859535C234}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{87AF0B02-2983-486D-857F-D1859535C234}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {87AF0B02-2983-486D-857F-D1859535C234}.Debug|x86.ActiveCfg = Debug|x86
- {87AF0B02-2983-486D-857F-D1859535C234}.Debug|x86.Build.0 = Debug|x86
+ {87AF0B02-2983-486D-857F-D1859535C234}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {87AF0B02-2983-486D-857F-D1859535C234}.Debug|x86.Build.0 = Debug|Any CPU
{87AF0B02-2983-486D-857F-D1859535C234}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {87AF0B02-2983-486D-857F-D1859535C234}.minimal|x86.ActiveCfg = Release|x86
- {87AF0B02-2983-486D-857F-D1859535C234}.minimal|x86.Build.0 = Release|x86
+ {87AF0B02-2983-486D-857F-D1859535C234}.minimal|x86.ActiveCfg = Release|Any CPU
+ {87AF0B02-2983-486D-857F-D1859535C234}.minimal|x86.Build.0 = Release|Any CPU
{87AF0B02-2983-486D-857F-D1859535C234}.Release|Any CPU.ActiveCfg = Release|Any CPU
{87AF0B02-2983-486D-857F-D1859535C234}.Release|Any CPU.Build.0 = Release|Any CPU
- {87AF0B02-2983-486D-857F-D1859535C234}.Release|x86.ActiveCfg = Release|x86
- {87AF0B02-2983-486D-857F-D1859535C234}.Release|x86.Build.0 = Release|x86
+ {87AF0B02-2983-486D-857F-D1859535C234}.Release|x86.ActiveCfg = Release|Any CPU
+ {87AF0B02-2983-486D-857F-D1859535C234}.Release|x86.Build.0 = Release|Any CPU
{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Debug|x86.ActiveCfg = Debug|x86
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Debug|x86.Build.0 = Debug|x86
+ {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Debug|x86.Build.0 = Debug|Any CPU
{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.minimal|x86.ActiveCfg = Release|x86
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.minimal|x86.Build.0 = Release|x86
+ {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.minimal|x86.ActiveCfg = Release|Any CPU
+ {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.minimal|x86.Build.0 = Release|Any CPU
{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Release|Any CPU.Build.0 = Release|Any CPU
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Release|x86.ActiveCfg = Release|x86
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Release|x86.Build.0 = Release|x86
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|x86.ActiveCfg = Debug|x86
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Debug|x86.Build.0 = Debug|x86
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|Any CPU.Build.0 = Debug|Any CPU
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|x86.ActiveCfg = Release|x86
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.minimal|x86.Build.0 = Release|x86
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|Any CPU.Build.0 = Release|Any CPU
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|x86.ActiveCfg = Release|x86
- {54C943DB-7725-4F52-BCE4-86C3D3D5A66E}.Release|x86.Build.0 = Release|x86
+ {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Release|x86.ActiveCfg = Release|Any CPU
+ {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}.Release|x86.Build.0 = Release|Any CPU
{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Debug|x86.ActiveCfg = Debug|x86
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Debug|x86.Build.0 = Debug|x86
+ {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Debug|x86.Build.0 = Debug|Any CPU
{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.minimal|x86.ActiveCfg = Release|x86
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.minimal|x86.Build.0 = Release|x86
+ {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.minimal|x86.ActiveCfg = Release|Any CPU
+ {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.minimal|x86.Build.0 = Release|Any CPU
{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Release|Any CPU.Build.0 = Release|Any CPU
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Release|x86.ActiveCfg = Release|x86
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Release|x86.Build.0 = Release|x86
+ {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Release|x86.ActiveCfg = Release|Any CPU
+ {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}.Release|x86.Build.0 = Release|Any CPU
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Debug|x86.ActiveCfg = Debug|x86
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Debug|x86.Build.0 = Debug|x86
+ {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Debug|x86.Build.0 = Debug|Any CPU
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.minimal|x86.ActiveCfg = Release|x86
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.minimal|x86.Build.0 = Release|x86
+ {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.minimal|x86.ActiveCfg = Release|Any CPU
+ {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.minimal|x86.Build.0 = Release|Any CPU
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Release|Any CPU.Build.0 = Release|Any CPU
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Release|x86.ActiveCfg = Release|x86
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Release|x86.Build.0 = Release|x86
+ {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Release|x86.ActiveCfg = Release|Any CPU
+ {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}.Release|x86.Build.0 = Release|Any CPU
{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Debug|x86.ActiveCfg = Debug|x86
- {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Debug|x86.Build.0 = Debug|x86
+ {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Debug|x86.Build.0 = Debug|Any CPU
{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.minimal|x86.ActiveCfg = Release|x86
- {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.minimal|x86.Build.0 = Release|x86
+ {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.minimal|x86.ActiveCfg = Release|Any CPU
+ {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.minimal|x86.Build.0 = Release|Any CPU
{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Release|Any CPU.Build.0 = Release|Any CPU
- {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Release|x86.ActiveCfg = Release|x86
- {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Release|x86.Build.0 = Release|x86
+ {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Release|x86.ActiveCfg = Release|Any CPU
+ {EFB9D66D-AF0F-4E45-A1AC-DB32981711D2}.Release|x86.Build.0 = Release|Any CPU
{19310CA3-6653-45E0-9EC8-F824629E2AD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19310CA3-6653-45E0-9EC8-F824629E2AD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Debug|x86.ActiveCfg = Debug|x86
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Debug|x86.Build.0 = Debug|x86
+ {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Debug|x86.Build.0 = Debug|Any CPU
{19310CA3-6653-45E0-9EC8-F824629E2AD8}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}.minimal|x86.ActiveCfg = Release|x86
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}.minimal|x86.Build.0 = Release|x86
+ {19310CA3-6653-45E0-9EC8-F824629E2AD8}.minimal|x86.ActiveCfg = Release|Any CPU
+ {19310CA3-6653-45E0-9EC8-F824629E2AD8}.minimal|x86.Build.0 = Release|Any CPU
{19310CA3-6653-45E0-9EC8-F824629E2AD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{19310CA3-6653-45E0-9EC8-F824629E2AD8}.Release|Any CPU.Build.0 = Release|Any CPU
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Release|x86.ActiveCfg = Release|x86
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Release|x86.Build.0 = Release|x86
+ {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Release|x86.ActiveCfg = Release|Any CPU
+ {19310CA3-6653-45E0-9EC8-F824629E2AD8}.Release|x86.Build.0 = Release|Any CPU
{5F61C809-B6C0-4567-9603-B2198E1AD038}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5F61C809-B6C0-4567-9603-B2198E1AD038}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {5F61C809-B6C0-4567-9603-B2198E1AD038}.Debug|x86.ActiveCfg = Debug|x86
- {5F61C809-B6C0-4567-9603-B2198E1AD038}.Debug|x86.Build.0 = Debug|x86
+ {5F61C809-B6C0-4567-9603-B2198E1AD038}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {5F61C809-B6C0-4567-9603-B2198E1AD038}.Debug|x86.Build.0 = Debug|Any CPU
{5F61C809-B6C0-4567-9603-B2198E1AD038}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
{5F61C809-B6C0-4567-9603-B2198E1AD038}.minimal|Any CPU.Build.0 = Debug|Any CPU
- {5F61C809-B6C0-4567-9603-B2198E1AD038}.minimal|x86.ActiveCfg = Release|x86
- {5F61C809-B6C0-4567-9603-B2198E1AD038}.minimal|x86.Build.0 = Release|x86
+ {5F61C809-B6C0-4567-9603-B2198E1AD038}.minimal|x86.ActiveCfg = Release|Any CPU
+ {5F61C809-B6C0-4567-9603-B2198E1AD038}.minimal|x86.Build.0 = Release|Any CPU
{5F61C809-B6C0-4567-9603-B2198E1AD038}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5F61C809-B6C0-4567-9603-B2198E1AD038}.Release|Any CPU.Build.0 = Release|Any CPU
- {5F61C809-B6C0-4567-9603-B2198E1AD038}.Release|x86.ActiveCfg = Release|x86
- {5F61C809-B6C0-4567-9603-B2198E1AD038}.Release|x86.Build.0 = Release|x86
+ {5F61C809-B6C0-4567-9603-B2198E1AD038}.Release|x86.ActiveCfg = Release|Any CPU
+ {5F61C809-B6C0-4567-9603-B2198E1AD038}.Release|x86.Build.0 = Release|Any CPU
{74DF4C01-660C-4CF4-9343-9330337BCBEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{74DF4C01-660C-4CF4-9343-9330337BCBEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Debug|x86.ActiveCfg = Debug|x86
- {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Debug|x86.Build.0 = Debug|x86
+ {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Debug|x86.Build.0 = Debug|Any CPU
{74DF4C01-660C-4CF4-9343-9330337BCBEA}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {74DF4C01-660C-4CF4-9343-9330337BCBEA}.minimal|x86.ActiveCfg = Release|x86
- {74DF4C01-660C-4CF4-9343-9330337BCBEA}.minimal|x86.Build.0 = Release|x86
+ {74DF4C01-660C-4CF4-9343-9330337BCBEA}.minimal|x86.ActiveCfg = Release|Any CPU
+ {74DF4C01-660C-4CF4-9343-9330337BCBEA}.minimal|x86.Build.0 = Release|Any CPU
{74DF4C01-660C-4CF4-9343-9330337BCBEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{74DF4C01-660C-4CF4-9343-9330337BCBEA}.Release|Any CPU.Build.0 = Release|Any CPU
- {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Release|x86.ActiveCfg = Release|x86
- {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Release|x86.Build.0 = Release|x86
+ {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Release|x86.ActiveCfg = Release|Any CPU
+ {74DF4C01-660C-4CF4-9343-9330337BCBEA}.Release|x86.Build.0 = Release|Any CPU
{123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Debug|x86.ActiveCfg = Debug|x86
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Debug|x86.Build.0 = Debug|x86
+ {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Debug|x86.Build.0 = Debug|Any CPU
{123D695C-0D5D-46E5-893F-39EC4E0B01B8}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
{123D695C-0D5D-46E5-893F-39EC4E0B01B8}.minimal|Any CPU.Build.0 = Debug|Any CPU
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.minimal|x86.ActiveCfg = Release|x86
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.minimal|x86.Build.0 = Release|x86
+ {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.minimal|x86.ActiveCfg = Release|Any CPU
+ {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.minimal|x86.Build.0 = Release|Any CPU
{123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Release|Any CPU.Build.0 = Release|Any CPU
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Release|x86.ActiveCfg = Release|x86
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Release|x86.Build.0 = Release|x86
+ {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Release|x86.ActiveCfg = Release|Any CPU
+ {123D695C-0D5D-46E5-893F-39EC4E0B01B8}.Release|x86.Build.0 = Release|Any CPU
{EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Debug|x86.ActiveCfg = Debug|x86
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Debug|x86.Build.0 = Debug|x86
+ {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Debug|x86.Build.0 = Debug|Any CPU
{EF37C48F-EABC-478B-B7C1-2BDB33968A21}.minimal|Any CPU.ActiveCfg = Release|Any CPU
{EF37C48F-EABC-478B-B7C1-2BDB33968A21}.minimal|Any CPU.Build.0 = Release|Any CPU
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.minimal|x86.ActiveCfg = Release|x86
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.minimal|x86.Build.0 = Release|x86
+ {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.minimal|x86.ActiveCfg = Release|Any CPU
+ {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.minimal|x86.Build.0 = Release|Any CPU
{EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Release|Any CPU.Build.0 = Release|Any CPU
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Release|x86.ActiveCfg = Release|x86
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Release|x86.Build.0 = Release|x86
+ {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Release|x86.ActiveCfg = Release|Any CPU
+ {EF37C48F-EABC-478B-B7C1-2BDB33968A21}.Release|x86.Build.0 = Release|Any CPU
{9D196637-2D50-4604-A310-378083CEA809}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D196637-2D50-4604-A310-378083CEA809}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {9D196637-2D50-4604-A310-378083CEA809}.Debug|x86.ActiveCfg = Debug|x86
- {9D196637-2D50-4604-A310-378083CEA809}.Debug|x86.Build.0 = Debug|x86
+ {9D196637-2D50-4604-A310-378083CEA809}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {9D196637-2D50-4604-A310-378083CEA809}.Debug|x86.Build.0 = Debug|Any CPU
{9D196637-2D50-4604-A310-378083CEA809}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
{9D196637-2D50-4604-A310-378083CEA809}.minimal|Any CPU.Build.0 = Debug|Any CPU
- {9D196637-2D50-4604-A310-378083CEA809}.minimal|x86.ActiveCfg = Release|x86
- {9D196637-2D50-4604-A310-378083CEA809}.minimal|x86.Build.0 = Release|x86
+ {9D196637-2D50-4604-A310-378083CEA809}.minimal|x86.ActiveCfg = Release|Any CPU
+ {9D196637-2D50-4604-A310-378083CEA809}.minimal|x86.Build.0 = Release|Any CPU
{9D196637-2D50-4604-A310-378083CEA809}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D196637-2D50-4604-A310-378083CEA809}.Release|Any CPU.Build.0 = Release|Any CPU
- {9D196637-2D50-4604-A310-378083CEA809}.Release|x86.ActiveCfg = Release|x86
- {9D196637-2D50-4604-A310-378083CEA809}.Release|x86.Build.0 = Release|x86
+ {9D196637-2D50-4604-A310-378083CEA809}.Release|x86.ActiveCfg = Release|Any CPU
+ {9D196637-2D50-4604-A310-378083CEA809}.Release|x86.Build.0 = Release|Any CPU
{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Debug|x86.ActiveCfg = Debug|x86
- {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Debug|x86.Build.0 = Debug|x86
+ {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Debug|x86.Build.0 = Debug|Any CPU
{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.minimal|x86.ActiveCfg = Release|x86
- {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.minimal|x86.Build.0 = Release|x86
+ {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.minimal|x86.ActiveCfg = Release|Any CPU
+ {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.minimal|x86.Build.0 = Release|Any CPU
{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Release|Any CPU.Build.0 = Release|Any CPU
- {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Release|x86.ActiveCfg = Release|x86
- {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Release|x86.Build.0 = Release|x86
+ {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Release|x86.ActiveCfg = Release|Any CPU
+ {FB7CFBB8-D7D0-4E9D-96CF-7D3D0D947EB5}.Release|x86.Build.0 = Release|Any CPU
{F644C902-A952-4797-9E2D-19D6051DD032}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F644C902-A952-4797-9E2D-19D6051DD032}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {F644C902-A952-4797-9E2D-19D6051DD032}.Debug|x86.ActiveCfg = Debug|x86
- {F644C902-A952-4797-9E2D-19D6051DD032}.Debug|x86.Build.0 = Debug|x86
+ {F644C902-A952-4797-9E2D-19D6051DD032}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {F644C902-A952-4797-9E2D-19D6051DD032}.Debug|x86.Build.0 = Debug|Any CPU
{F644C902-A952-4797-9E2D-19D6051DD032}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {F644C902-A952-4797-9E2D-19D6051DD032}.minimal|x86.ActiveCfg = Release|x86
- {F644C902-A952-4797-9E2D-19D6051DD032}.minimal|x86.Build.0 = Release|x86
+ {F644C902-A952-4797-9E2D-19D6051DD032}.minimal|x86.ActiveCfg = Release|Any CPU
+ {F644C902-A952-4797-9E2D-19D6051DD032}.minimal|x86.Build.0 = Release|Any CPU
{F644C902-A952-4797-9E2D-19D6051DD032}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F644C902-A952-4797-9E2D-19D6051DD032}.Release|Any CPU.Build.0 = Release|Any CPU
- {F644C902-A952-4797-9E2D-19D6051DD032}.Release|x86.ActiveCfg = Release|x86
- {F644C902-A952-4797-9E2D-19D6051DD032}.Release|x86.Build.0 = Release|x86
+ {F644C902-A952-4797-9E2D-19D6051DD032}.Release|x86.ActiveCfg = Release|Any CPU
+ {F644C902-A952-4797-9E2D-19D6051DD032}.Release|x86.Build.0 = Release|Any CPU
{8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Debug|x86.ActiveCfg = Debug|x86
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Debug|x86.Build.0 = Debug|x86
+ {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Debug|x86.Build.0 = Debug|Any CPU
{8491FEEE-C311-4B64-BB30-A1F1C1802F45}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.minimal|x86.ActiveCfg = Release|x86
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.minimal|x86.Build.0 = Release|x86
+ {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.minimal|x86.ActiveCfg = Release|Any CPU
+ {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.minimal|x86.Build.0 = Release|Any CPU
{8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Release|Any CPU.Build.0 = Release|Any CPU
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Release|x86.ActiveCfg = Release|x86
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Release|x86.Build.0 = Release|x86
+ {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Release|x86.ActiveCfg = Release|Any CPU
+ {8491FEEE-C311-4B64-BB30-A1F1C1802F45}.Release|x86.Build.0 = Release|Any CPU
{4408C857-0371-42BF-A635-E23C8A99A803}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4408C857-0371-42BF-A635-E23C8A99A803}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {4408C857-0371-42BF-A635-E23C8A99A803}.Debug|x86.ActiveCfg = Debug|x86
- {4408C857-0371-42BF-A635-E23C8A99A803}.Debug|x86.Build.0 = Debug|x86
+ {4408C857-0371-42BF-A635-E23C8A99A803}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {4408C857-0371-42BF-A635-E23C8A99A803}.Debug|x86.Build.0 = Debug|Any CPU
{4408C857-0371-42BF-A635-E23C8A99A803}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {4408C857-0371-42BF-A635-E23C8A99A803}.minimal|x86.ActiveCfg = Release|x86
- {4408C857-0371-42BF-A635-E23C8A99A803}.minimal|x86.Build.0 = Release|x86
+ {4408C857-0371-42BF-A635-E23C8A99A803}.minimal|x86.ActiveCfg = Release|Any CPU
+ {4408C857-0371-42BF-A635-E23C8A99A803}.minimal|x86.Build.0 = Release|Any CPU
{4408C857-0371-42BF-A635-E23C8A99A803}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4408C857-0371-42BF-A635-E23C8A99A803}.Release|Any CPU.Build.0 = Release|Any CPU
- {4408C857-0371-42BF-A635-E23C8A99A803}.Release|x86.ActiveCfg = Release|x86
- {4408C857-0371-42BF-A635-E23C8A99A803}.Release|x86.Build.0 = Release|x86
+ {4408C857-0371-42BF-A635-E23C8A99A803}.Release|x86.ActiveCfg = Release|Any CPU
+ {4408C857-0371-42BF-A635-E23C8A99A803}.Release|x86.Build.0 = Release|Any CPU
{7DA57D98-255B-46DE-BF94-D163695A0568}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7DA57D98-255B-46DE-BF94-D163695A0568}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7DA57D98-255B-46DE-BF94-D163695A0568}.Debug|x86.ActiveCfg = Debug|x86
- {7DA57D98-255B-46DE-BF94-D163695A0568}.Debug|x86.Build.0 = Debug|x86
+ {7DA57D98-255B-46DE-BF94-D163695A0568}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {7DA57D98-255B-46DE-BF94-D163695A0568}.Debug|x86.Build.0 = Debug|Any CPU
{7DA57D98-255B-46DE-BF94-D163695A0568}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {7DA57D98-255B-46DE-BF94-D163695A0568}.minimal|x86.ActiveCfg = Release|x86
- {7DA57D98-255B-46DE-BF94-D163695A0568}.minimal|x86.Build.0 = Release|x86
+ {7DA57D98-255B-46DE-BF94-D163695A0568}.minimal|x86.ActiveCfg = Release|Any CPU
+ {7DA57D98-255B-46DE-BF94-D163695A0568}.minimal|x86.Build.0 = Release|Any CPU
{7DA57D98-255B-46DE-BF94-D163695A0568}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7DA57D98-255B-46DE-BF94-D163695A0568}.Release|Any CPU.Build.0 = Release|Any CPU
- {7DA57D98-255B-46DE-BF94-D163695A0568}.Release|x86.ActiveCfg = Release|x86
- {7DA57D98-255B-46DE-BF94-D163695A0568}.Release|x86.Build.0 = Release|x86
+ {7DA57D98-255B-46DE-BF94-D163695A0568}.Release|x86.ActiveCfg = Release|Any CPU
+ {7DA57D98-255B-46DE-BF94-D163695A0568}.Release|x86.Build.0 = Release|Any CPU
{9936180C-90A7-467C-B761-EC184EFE1F9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9936180C-90A7-467C-B761-EC184EFE1F9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {9936180C-90A7-467C-B761-EC184EFE1F9F}.Debug|x86.ActiveCfg = Debug|x86
- {9936180C-90A7-467C-B761-EC184EFE1F9F}.Debug|x86.Build.0 = Debug|x86
+ {9936180C-90A7-467C-B761-EC184EFE1F9F}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {9936180C-90A7-467C-B761-EC184EFE1F9F}.Debug|x86.Build.0 = Debug|Any CPU
{9936180C-90A7-467C-B761-EC184EFE1F9F}.minimal|Any CPU.ActiveCfg = Debug|Any CPU
- {9936180C-90A7-467C-B761-EC184EFE1F9F}.minimal|x86.ActiveCfg = Release|x86
- {9936180C-90A7-467C-B761-EC184EFE1F9F}.minimal|x86.Build.0 = Release|x86
+ {9936180C-90A7-467C-B761-EC184EFE1F9F}.minimal|x86.ActiveCfg = Release|Any CPU
+ {9936180C-90A7-467C-B761-EC184EFE1F9F}.minimal|x86.Build.0 = Release|Any CPU
{9936180C-90A7-467C-B761-EC184EFE1F9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9936180C-90A7-467C-B761-EC184EFE1F9F}.Release|Any CPU.Build.0 = Release|Any CPU
- {9936180C-90A7-467C-B761-EC184EFE1F9F}.Release|x86.ActiveCfg = Release|x86
- {9936180C-90A7-467C-B761-EC184EFE1F9F}.Release|x86.Build.0 = Release|x86
+ {9936180C-90A7-467C-B761-EC184EFE1F9F}.Release|x86.ActiveCfg = Release|Any CPU
+ {9936180C-90A7-467C-B761-EC184EFE1F9F}.Release|x86.Build.0 = Release|Any CPU
{FEC3014D-0067-4D59-A838-3B046EC3C352}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FEC3014D-0067-4D59-A838-3B046EC3C352}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.Debug|x86.ActiveCfg = Debug|x86
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.Debug|x86.Build.0 = Debug|x86
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|Any CPU.ActiveCfg = Release|x86
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|x86.ActiveCfg = Release|x86
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|x86.Build.0 = Release|x86
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.Debug|x86.Build.0 = Debug|Any CPU
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|Any CPU.ActiveCfg = Release|Any CPU
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|Any CPU.Build.0 = Release|Any CPU
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|x86.ActiveCfg = Release|Any CPU
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.minimal|x86.Build.0 = Release|Any CPU
{FEC3014D-0067-4D59-A838-3B046EC3C352}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FEC3014D-0067-4D59-A838-3B046EC3C352}.Release|Any CPU.Build.0 = Release|Any CPU
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.Release|x86.ActiveCfg = Release|x86
- {FEC3014D-0067-4D59-A838-3B046EC3C352}.Release|x86.Build.0 = Release|x86
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.Release|x86.ActiveCfg = Release|Any CPU
+ {FEC3014D-0067-4D59-A838-3B046EC3C352}.Release|x86.Build.0 = Release|Any CPU
{4498EAF7-1736-40C3-AD20-6B2CD8D935DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4498EAF7-1736-40C3-AD20-6B2CD8D935DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4498EAF7-1736-40C3-AD20-6B2CD8D935DB}.Debug|x86.ActiveCfg = Debug|Any CPU
diff --git a/build/WeSay.proj b/build/WeSay.proj
index 4b4e6b40e..6c07bc21d 100644
--- a/build/WeSay.proj
+++ b/build/WeSay.proj
@@ -6,7 +6,7 @@
$(RootDir)/$(Solution)
Debug
KnownMonoIssue,
- SkipOnTeamCity,$(LinuxExcludeCategories)
+ SkipOnCI,$(LinuxExcludeCategories)
true
x
false
@@ -46,7 +46,7 @@
]]>
-
+
@@ -66,10 +66,10 @@
-
-
+
-
diff --git a/build/build.common.proj b/build/build.common.proj
index ee279dd2d..b21710a09 100644
--- a/build/build.common.proj
+++ b/build/build.common.proj
@@ -5,7 +5,7 @@
true
false
- SkipOnTeamCity,$(ExtraExcludeCategories)
+ SkipOnCI,$(ExtraExcludeCategories)
diff --git a/build/build.mono.proj b/build/build.mono.proj
index e1ad093c8..383b9ab75 100644
--- a/build/build.mono.proj
+++ b/build/build.mono.proj
@@ -51,7 +51,7 @@
Targets="Build"
Properties="Configuration=$(Configuration);Constants=$(Constants)" />
diff --git a/src/.nuget/packages.config b/src/.nuget/packages.config
deleted file mode 100644
index 23a62fd78..000000000
--- a/src/.nuget/packages.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/src/Addin.Backup.Tests/Addin.Backup.Tests.csproj b/src/Addin.Backup.Tests/Addin.Backup.Tests.csproj
index 826d8a86c..e827bb45e 100755
--- a/src/Addin.Backup.Tests/Addin.Backup.Tests.csproj
+++ b/src/Addin.Backup.Tests/Addin.Backup.Tests.csproj
@@ -1,228 +1,70 @@
-
-
-
+
- Debug
- AnyCPU
- 9.0.21022
- 2.0
- {EF37C48F-EABC-478B-B7C1-2BDB33968A21}
+ net8.0-windows
Library
- Properties
- Addin.Backup.Tests
- Addin.Backup.Tests
- v4.6.1
-
..\AppForTests.config
- 512
-
-
- 3.5
-
-
-
+ false
+ true
+ true
- true
- full
- false
..\..\output\Debug\
- DEBUG;TRACE
- prompt
- 4
Library
- Addin.Backup.Tests
- Addin.Backup.Tests
- false
true
- x86
- pdbonly
- true
..\..\output\Release\
- TRACE
- prompt
- 4
Library
- Addin.Backup.Tests
true
- Addin.Backup.Tests
- false
true
- true
..\..\output\Debug\
- DEBUG;TRACE
true
- full
- x86
- prompt
true
..\..\output\Release\
- TRACE
true
- true
- pdbonly
- x86
- prompt
true
-
- ..\packages\Autofac.4.1.1\lib\net45\Autofac.dll
-
-
- ..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll
-
-
- ..\packages\icu.net.2.7.1\lib\net451\icu.net.dll
-
-
- ..\packages\Microsoft.Bcl.AsyncInterfaces.5.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll
-
-
- ..\packages\Microsoft.DotNet.PlatformAbstractions.2.0.4\lib\net45\Microsoft.DotNet.PlatformAbstractions.dll
-
-
- ..\packages\Microsoft.Extensions.DependencyModel.2.0.4\lib\net451\Microsoft.Extensions.DependencyModel.dll
-
-
- ..\packages\Mono.Posix.7.0.0-alpha2.21278.1\lib\net45\Mono.Posix.dll
-
-
- ..\packages\Mono.Unix.7.0.0-alpha2.21278.1\lib\net45\Mono.Unix.dll
-
-
- ..\packages\NUnit.3.13.1\lib\net45\nunit.framework.dll
-
-
- ..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
-
-
- False
- ..\packages\SIL.Core.Desktop.9.0.0-beta0154\lib\net461\SIL.Core.Desktop.dll
-
-
- ..\packages\SIL.TestUtilities.9.0.0-beta0154\lib\net461\SIL.TestUtilities.dll
-
-
- ..\packages\SIL.WritingSystems.9.0.0-beta0154\lib\net461\SIL.WritingSystems.dll
-
-
- ..\packages\Spart.1.0.0\lib\net461\Spart.dll
-
-
-
- ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll
-
-
-
- 3.5
-
-
- ..\packages\System.Diagnostics.DiagnosticSource.4.7.1\lib\net46\System.Diagnostics.DiagnosticSource.dll
-
-
- ..\packages\System.IO.FileSystem.AccessControl.4.7.0\lib\net461\System.IO.FileSystem.AccessControl.dll
-
-
- ..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll
-
-
-
- ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll
-
-
- ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll
-
-
- ..\packages\System.Security.AccessControl.4.7.0\lib\net461\System.Security.AccessControl.dll
-
-
- ..\packages\System.Security.Principal.Windows.4.7.0\lib\net461\System.Security.Principal.Windows.dll
-
-
- ..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll
-
-
- ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll
-
-
-
- 3.5
-
-
- 3.5
-
-
-
-
-
-
-
-
-
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
- Designer
-
-
- True
- Resources.resx
- True
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
- True
- Settings.settings
- True
-
-
+
+
+
-
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}
- Addin.Backup
-
-
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}
- WeSay.Project
-
-
- {FEC3014D-0067-4D59-A838-3B046EC3C352}
- WeSay.TestUtilities
-
+
-
+
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Addin.Backup.Tests/Properties/AssemblyInfo.cs b/src/Addin.Backup.Tests/Properties/AssemblyInfo.cs
deleted file mode 100644
index 6336f3e34..000000000
--- a/src/Addin.Backup.Tests/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Addin.Backup.Tests")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Addin.Backup.Tests")]
-[assembly: AssemblyCopyright("Copyright © 2009")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// 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("80465a17-fb70-4a64-b8b0-95f9350d4b47")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.9.0.10")]
-[assembly: AssemblyVersion("1.9.0.10")]
-[assembly: AssemblyFileVersion("1.9.0.10")]
diff --git a/src/Addin.Backup.Tests/packages.config b/src/Addin.Backup.Tests/packages.config
deleted file mode 100644
index 2924511e4..000000000
--- a/src/Addin.Backup.Tests/packages.config
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Addin.Backup/Addin.Backup.csproj b/src/Addin.Backup/Addin.Backup.csproj
index e879aa3ee..4b5b895f3 100755
--- a/src/Addin.Backup/Addin.Backup.csproj
+++ b/src/Addin.Backup/Addin.Backup.csproj
@@ -1,215 +1,77 @@
-
-
+
- Debug
- AnyCPU
- 9.0.21022
- 2.0
- {42FB4CC3-F2D1-4509-87DD-6BBD430CD4AB}
+ net8.0-windows
Library
- Properties
- Addin.Backup
- Addin.Backup
-
-
-
-
- 3.5
- v4.6.1
-
-
-
+ false
+ true
+ true
- true
- full
- false
..\..\output\Debug\
- DEBUG;TRACE
- prompt
- 4
Library
- Addin.Backup
- Addin.Backup
- false
true
- x86
- pdbonly
- true
..\..\output\Release\
- TRACE
- prompt
- 4
Library
- Addin.Backup
true
- Addin.Backup
- false
true
- true
..\..\output\$(Configuration)\
- DEBUG;TRACE
true
- full
- x86
- prompt
true
..\..\output\Release\
- TRACE
true
- true
- pdbonly
- x86
- prompt
true
-
- ..\packages\Enchant.Net.1.4.2\lib\net461\Enchant.Net.dll
-
-
- ..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll
-
-
- ..\packages\JetBrains.Annotations.2021.2.0\lib\net20\JetBrains.Annotations.dll
-
-
- ..\packages\L10NSharp.5.0.0-beta0086\lib\net461\L10NSharp.dll
-
-
- ..\packages\SIL.Chorus.LibChorus.5.0.0-beta0017\lib\net461\LibChorus.dll
-
-
- ..\packages\Mono.Addins.1.3.8\lib\net45\Mono.Addins.dll
-
-
- PreserveNewest
-
-
- ..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
-
-
- ..\packages\SIL.Core.Desktop.9.0.0-beta0154\lib\net461\SIL.Core.Desktop.dll
-
-
- ..\packages\SIL.Lift.9.0.0-beta0154\lib\net461\SIL.Lift.dll
-
-
- ..\packages\SIL.Windows.Forms.9.0.0-beta0154\lib\net461\SIL.Windows.Forms.dll
-
-
- ..\packages\SIL.WritingSystems.9.0.0-beta0154\lib\net461\SIL.WritingSystems.dll
-
-
-
-
-
- 3.5
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
- Form
-
-
- BackupDialog.cs
-
-
-
- True
- True
- Resources.resx
-
-
-
- Form
-
-
- SendProjectEmailSettingsDialog.cs
-
-
-
-
- {5F61C809-B6C0-4567-9603-B2198E1AD038}
- LexicalModel
-
-
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}
- WeSay.AddinLib
-
-
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
- WeSay.Data
-
-
- {F12EB680-0990-4900-B77E-0FBF2E28A815}
- WeSay.Foundation
-
-
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}
- WeSay.Project
-
-
- {AC8F284C-7B34-4AC9-A7DE-FAF765456DFF}
- WeSay.UI
-
-
-
-
- Designer
- BackupDialog.cs
-
-
- Designer
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- Designer
- SendProjectEmailSettingsDialog.cs
-
+
+
+ $(PkgSIL_Windows_Forms)\lib\net461\SIL.Windows.Forms.dll
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Addin.Backup/BackupDialog.cs b/src/Addin.Backup/BackupDialog.cs
index 1429f1431..d19f3023b 100644
--- a/src/Addin.Backup/BackupDialog.cs
+++ b/src/Addin.Backup/BackupDialog.cs
@@ -1,10 +1,9 @@
using SIL.i18n;
using SIL.Reporting;
-using SIL.UsbDrive;
using System;
-using System.Collections.Generic;
using System.Drawing;
using System.IO;
+using System.Linq;
using System.Windows.Forms;
using WeSay.AddinLib;
@@ -24,7 +23,7 @@ public BackupDialog(ProjectInfo projectInfo)
_cancelButton.Font = (Font)StringCatalog.LabelFont.Clone();
}
- private void DoBackup(IUsbDriveInfo info)
+ private void DoBackup(DriveInfo info)
{
_checkForUsbKeyTimer.Enabled = false;
_noteLabel.Visible = false;
@@ -57,9 +56,9 @@ private void _cancelButton_Click(object sender, EventArgs e)
_checkForUsbKeyTimer.Enabled = false;
}
- public List GetLogicalUsbDisks()
+ public DriveInfo[] GetLogicalUsbDisks()
{
- return UsbDriveInfo.GetDrives();
+ return DriveInfo.GetDrives().Where(d => d.DriveType == DriveType.Removable).ToArray();
}
private void Dialog_Load(object sender, EventArgs e)
@@ -77,7 +76,7 @@ private void LookForTargetVolume()
try
{
var usbDrives = GetLogicalUsbDisks();
- if ((usbDrives.Count > 0) && (usbDrives[0].IsReady))
+ if ((usbDrives.Length > 0) && (usbDrives[0].IsReady))
{
DoBackup(usbDrives[0]);
}
diff --git a/src/Addin.Backup/Properties/AssemblyInfo.cs b/src/Addin.Backup/Properties/AssemblyInfo.cs
deleted file mode 100644
index fc98e9123..000000000
--- a/src/Addin.Backup/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using Mono.Addins;
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-
-[assembly: AssemblyTitle("Addin.Backup")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("SIL")]
-[assembly: AssemblyProduct("Addin.Backup")]
-[assembly: AssemblyCopyright("Copyright © SIL 2007")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// 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("ad1eca7a-211c-4b64-87ba-5d43887a267c")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Revision and Build Numbers
-// by using the '*' as shown below:
-
-[assembly: AssemblyVersion("1.9.0.10")]
-[assembly: AssemblyFileVersion("1.9.0.10")]
-[assembly: Addin]
-[assembly: AddinDependency("WeSay.AddinLib", "1.0")]
\ No newline at end of file
diff --git a/src/Addin.Backup/packages.config b/src/Addin.Backup/packages.config
deleted file mode 100644
index 228f512c4..000000000
--- a/src/Addin.Backup/packages.config
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Addin.Synchronize/Addin.Synchronize.csproj b/src/Addin.Synchronize/Addin.Synchronize.csproj
index 2eda84d64..ca8ff286f 100644
--- a/src/Addin.Synchronize/Addin.Synchronize.csproj
+++ b/src/Addin.Synchronize/Addin.Synchronize.csproj
@@ -29,7 +29,7 @@
- ..\packages\Mono.Addins.1.2\lib\net40\Mono.Addins.dll
+ ..\..\packages\Mono.Addins.1.2\lib\net40\Mono.Addins.dll
diff --git a/src/Addin.Transform.Tests/Addin.Transform.Tests.csproj b/src/Addin.Transform.Tests/Addin.Transform.Tests.csproj
index d26a46fbb..d1ca87b3b 100644
--- a/src/Addin.Transform.Tests/Addin.Transform.Tests.csproj
+++ b/src/Addin.Transform.Tests/Addin.Transform.Tests.csproj
@@ -1,260 +1,91 @@
-
-
+
- Debug
- AnyCPU
- 9.0.21022
- 2.0
- {19310CA3-6653-45E0-9EC8-F824629E2AD8}
+ net8.0-windows
Library
- Properties
- Addin.Transform.Tests
- Addin.Transform.Tests
..\AppForTests.config
-
-
-
-
- 3.5
- v4.6.1
-
-
-
+ false
+ true
+ true
- true
- full
- false
..\..\output\Debug\
- DEBUG;TRACE
- prompt
- 4
Library
- Addin.Transform.Tests
- Addin.Transform.Tests
- false
true
- x86
- pdbonly
- true
..\..\output\Release\
- TRACE
- prompt
- 4
Library
- Addin.Transform.Tests
true
- Addin.Transform.Tests
- false
true
- true
..\..\output\Debug\
- DEBUG;TRACE
true
- full
- x86
- prompt
true
..\..\output\Release\
- TRACE
true
- true
- pdbonly
- x86
- prompt
true
-
- ..\packages\Autofac.4.1.1\lib\net45\Autofac.dll
-
-
- ..\packages\RelaxNG.3.2.3\lib\net40\Commons.Xml.Relaxng.dll
-
-
- ..\packages\DialogAdapters.Gtk2.0.1.9\lib\net461\DialogAdapters.dll
-
-
- ..\packages\Enchant.Net.1.4.2\lib\net461\Enchant.Net.dll
-
-
- ..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll
-
-
- ..\packages\icu.net.2.7.1\lib\net451\icu.net.dll
-
-
- ..\packages\JetBrains.Annotations.2021.2.0\lib\net20\JetBrains.Annotations.dll
-
-
- ..\packages\L10NSharp.5.0.0-beta0086\lib\net461\L10NSharp.dll
-
-
- ..\packages\Markdig.Signed.0.22.0\lib\net452\Markdig.Signed.dll
-
-
- ..\packages\Microsoft.DotNet.PlatformAbstractions.2.0.4\lib\net45\Microsoft.DotNet.PlatformAbstractions.dll
-
-
- ..\packages\Microsoft.Extensions.DependencyModel.2.0.4\lib\net451\Microsoft.Extensions.DependencyModel.dll
-
-
- ..\packages\NDesk.DBus.0.15.0\lib\NDesk.DBus.dll
-
-
- ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll
-
-
- ..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
-
-
- ..\packages\SIL.Core.Desktop.9.0.0-beta0154\lib\net461\SIL.Core.Desktop.dll
-
-
- ..\packages\SIL.DictionaryServices.9.0.0-beta0154\lib\net461\SIL.DictionaryServices.dll
-
-
- ..\packages\SIL.Lift.9.0.0-beta0154\lib\net461\SIL.Lift.dll
-
-
- False
- ..\packages\SIL.TestUtilities.9.0.0-beta0154\lib\net461\SIL.TestUtilities.dll
-
-
- ..\packages\SIL.Windows.Forms.9.0.0-beta0154\lib\net461\SIL.Windows.Forms.dll
-
-
- ..\packages\SIL.WritingSystems.9.0.0-beta0154\lib\net461\SIL.WritingSystems.dll
-
-
- ..\packages\Spart.1.0.0\lib\net461\Spart.dll
-
-
-
- ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll
-
-
-
- 3.5
-
-
-
-
-
- ..\packages\System.IO.FileSystem.AccessControl.4.7.0\lib\net461\System.IO.FileSystem.AccessControl.dll
-
-
-
- ..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll
-
-
-
- ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll
-
-
- ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll
-
-
-
- ..\packages\System.Security.AccessControl.4.7.0\lib\net461\System.Security.AccessControl.dll
-
-
- ..\packages\System.Security.Principal.Windows.4.7.0\lib\net461\System.Security.Principal.Windows.dll
-
-
-
- ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll
-
-
-
-
-
- ..\packages\NUnit.3.13.1\lib\net45\nunit.framework.dll
-
-
- ..\packages\TagLibSharp.2.2.0\lib\net45\TagLibSharp.dll
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
+ $(PkgSIL_Windows_Forms)\lib\net461\SIL.Windows.Forms.dll
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
- {9D196637-2D50-4604-A310-378083CEA809}
- Addin.Transform
-
-
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}
- LexicalModel.Tests
-
-
- {5F61C809-B6C0-4567-9603-B2198E1AD038}
- LexicalModel
-
-
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}
- WeSay.AddinLib
-
-
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
- WeSay.Data
-
-
- {F12EB680-0990-4900-B77E-0FBF2E28A815}
- WeSay.Foundation
-
-
- {F644C902-A952-4797-9E2D-19D6051DD032}
- WeSay.Project.Tests
-
-
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}
- WeSay.Project
-
-
- {FEC3014D-0067-4D59-A838-3B046EC3C352}
- WeSay.TestUtilities
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Addin.Transform.Tests/LibreOfficePdfTests.cs b/src/Addin.Transform.Tests/LibreOfficePdfTests.cs
index 265d119df..f410fb816 100644
--- a/src/Addin.Transform.Tests/LibreOfficePdfTests.cs
+++ b/src/Addin.Transform.Tests/LibreOfficePdfTests.cs
@@ -107,7 +107,7 @@ private static void CopyFolder(string sourceFolder, string destFolder)
}
[Test]
- [Category("SkipOnTeamCity")]
+ [Category("SkipOnCI")]
[Platform(Exclude = "Win", Reason = "Mono only test")]
public void TestOpenDocumentPdf()
{
@@ -132,7 +132,7 @@ public void TestOpenDocumentPdf()
}
[Test]
- [Category("SkipOnTeamCity")]
+ [Category("SkipOnCI")]
[Platform(Exclude = "Win", Reason = "Mono only test")]
public void TestOpenDocumentPdfOpen()
{
diff --git a/src/Addin.Transform.Tests/PdfMakerTests.cs b/src/Addin.Transform.Tests/PdfMakerTests.cs
index 8fc09e820..8230690c6 100644
--- a/src/Addin.Transform.Tests/PdfMakerTests.cs
+++ b/src/Addin.Transform.Tests/PdfMakerTests.cs
@@ -61,14 +61,14 @@ public void TearDown()
}
[Test]
- [Category("SkipOnTeamCity")]
+ [Category("SkipOnCI")]
public void CreatePDF()
{
LaunchAddin();
}
[Test]
- [Category("SkipOnTeamCity")]
+ [Category("SkipOnCI")]
public void CreatePdfAndOpen()
{
LaunchAddin();
diff --git a/src/Addin.Transform.Tests/Properties/AssemblyInfo.cs b/src/Addin.Transform.Tests/Properties/AssemblyInfo.cs
deleted file mode 100644
index cd240e859..000000000
--- a/src/Addin.Transform.Tests/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-
-[assembly: AssemblyTitle("Addin.Transform.Tests")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("SIL")]
-[assembly: AssemblyProduct("Addin.Transform.Tests")]
-[assembly: AssemblyCopyright("Copyright © SIL 2007")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// 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("7351069e-f724-4f9b-858b-908778e28ab4")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-
-[assembly: AssemblyVersion("1.9.0.10")]
-[assembly: AssemblyFileVersion("1.9.0.10")]
\ No newline at end of file
diff --git a/src/Addin.Transform.Tests/SfmTransformerTests.cs b/src/Addin.Transform.Tests/SfmTransformerTests.cs
index 8ee58c2b2..697356336 100644
--- a/src/Addin.Transform.Tests/SfmTransformerTests.cs
+++ b/src/Addin.Transform.Tests/SfmTransformerTests.cs
@@ -11,7 +11,7 @@
namespace Addin.Transform.Tests
{
- [Category("SkipOnTeamCity")] // Uses ProgressDialog during transforms.
+ [Category("SkipOnCI")] // Uses ProgressDialog during transforms.
[TestFixture]
public class SfmTransformerTests
{
diff --git a/src/Addin.Transform.Tests/packages.config b/src/Addin.Transform.Tests/packages.config
deleted file mode 100644
index 9b71df9c6..000000000
--- a/src/Addin.Transform.Tests/packages.config
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Addin.Transform/Addin.Transform.csproj b/src/Addin.Transform/Addin.Transform.csproj
index 6c700a3c9..314583153 100755
--- a/src/Addin.Transform/Addin.Transform.csproj
+++ b/src/Addin.Transform/Addin.Transform.csproj
@@ -1,22 +1,7 @@
-
-
+
- Debug
- AnyCPU
- 9.0.21022
- 2.0
- {9D196637-2D50-4604-A310-378083CEA809}
+ net8.0-windows
Library
- Properties
- Addin.Transform
- Addin.Transform
-
-
-
-
- 3.5
- v4.6.1
-
publish\
true
Disk
@@ -32,324 +17,92 @@
false
false
true
-
-
+ false
+ true
+ true
- true
- full
- false
..\..\output\Debug\
- DEBUG;TRACE
- prompt
- 4
Library
- Addin.Transform
true
/usr/share/wesay/WeSay.ConfigTool.exe /home/keith/WeSay/krstest/krstest.lift
true
- x86
- pdbonly
- true
..\..\output\Release\
- TRACE
- prompt
- 4
Library
true
- Addin.Transform
true
- true
..\..\output\Debug\
- DEBUG;TRACE
true
- full
- x86
- prompt
- 4
- false
true
..\..\output\Release\
- TRACE
true
- true
- pdbonly
- x86
- prompt
- 4
-
- ..\packages\RelaxNG.3.2.3\lib\net40\Commons.Xml.Relaxng.dll
-
-
- ..\packages\DialogAdapters.Gtk2.0.1.9\lib\net461\DialogAdapters.dll
-
-
- ..\packages\Enchant.Net.1.4.2\lib\net461\Enchant.Net.dll
-
-
- ..\packages\icu.net.2.7.1\lib\net451\icu.net.dll
-
-
- ..\packages\JetBrains.Annotations.2021.2.0\lib\net20\JetBrains.Annotations.dll
-
-
- ..\packages\L10NSharp.5.0.0-beta0086\lib\net461\L10NSharp.dll
-
-
- ..\packages\Markdig.Signed.0.22.0\lib\net452\Markdig.Signed.dll
-
-
- ..\packages\Microsoft.DotNet.PlatformAbstractions.2.0.4\lib\net45\Microsoft.DotNet.PlatformAbstractions.dll
-
-
- ..\packages\Microsoft.Extensions.DependencyModel.2.0.4\lib\net451\Microsoft.Extensions.DependencyModel.dll
-
-
- PreserveNewest
-
-
- ..\packages\Mono.Addins.1.3.8\lib\net45\Mono.Addins.dll
-
-
- ..\packages\NDesk.DBus.0.15.0\lib\NDesk.DBus.dll
-
-
- False
- ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll
-
-
- ..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
-
-
- ..\packages\SIL.Core.Desktop.9.0.0-beta0154\lib\net461\SIL.Core.Desktop.dll
-
-
- ..\packages\SIL.DictionaryServices.9.0.0-beta0154\lib\net461\SIL.DictionaryServices.dll
-
-
- ..\packages\SIL.Lexicon.9.0.0-beta0154\lib\net461\SIL.Lexicon.dll
-
-
- ..\packages\SIL.Lift.9.0.0-beta0154\lib\net461\SIL.Lift.dll
-
-
- ..\packages\SIL.Windows.Forms.9.0.0-beta0154\lib\net461\SIL.Windows.Forms.dll
-
-
- ..\packages\SIL.WritingSystems.9.0.0-beta0154\lib\net461\SIL.WritingSystems.dll
-
-
- ..\packages\Spart.1.0.0\lib\net461\Spart.dll
-
-
-
- ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll
-
-
-
- 3.5
-
-
-
-
- ..\packages\System.IO.FileSystem.AccessControl.4.7.0\lib\net461\System.IO.FileSystem.AccessControl.dll
-
-
-
- ..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll
-
-
-
- ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll
-
-
- ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll
-
-
-
- ..\packages\System.Security.AccessControl.4.7.0\lib\net461\System.Security.AccessControl.dll
-
-
- ..\packages\System.Security.Principal.Windows.4.7.0\lib\net461\System.Security.Principal.Windows.dll
-
-
-
- ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll
-
-
-
-
-
- ..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll
-
-
- ..\packages\TagLibSharp.2.2.0\lib\net45\TagLibSharp.dll
-
+
+
+
+
+
-
- Form
-
-
- LameProgressDialog.cs
-
-
- Form
-
-
- AboutMakePdfDictionary.cs
-
-
-
- Form
-
-
- AboutLexiquePro.cs
-
-
-
-
-
-
-
-
-
-
-
- PreserveNewest
- True
- True
- Resources.resx
-
-
- Form
-
-
- SFMChangesDialog.cs
-
-
-
-
-
-
-
-
-
-
- {5F61C809-B6C0-4567-9603-B2198E1AD038}
- LexicalModel
-
-
- {E651E83C-94DD-4D6D-ABA2-C9FDA34FBA55}
- WeSay.AddinLib
-
-
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
- WeSay.Data
-
-
- {F12EB680-0990-4900-B77E-0FBF2E28A815}
- WeSay.Foundation
-
-
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}
- WeSay.Project
-
-
-
-
- Designer
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SFMChangesDialog.cs
- Designer
-
Always
-
- LameProgressDialog.cs
- Designer
-
-
- AboutLexiquePro.cs
- Designer
-
Always
-
- AboutMakePdfDictionary.cs
- Designer
-
PreserveNewest
-
-
-
-
-
-
-
-
-
-
-
-
-
PreserveNewest
+
-
- False
- .NET Framework 3.5 SP1 Client Profile
- false
-
-
- False
- .NET Framework 3.5 SP1
- true
-
-
- False
- Windows Installer 3.1
- true
-
+
+
+ $(PkgSIL_Windows_Forms)\lib\net461\SIL.Windows.Forms.dll
+
-
-
-
-
-
-
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Addin.Transform/LiftTransformer.cs b/src/Addin.Transform/LiftTransformer.cs
index bf5aabcad..de93f429a 100644
--- a/src/Addin.Transform/LiftTransformer.cs
+++ b/src/Addin.Transform/LiftTransformer.cs
@@ -265,18 +265,6 @@ private static void OnDoTransformWork(object sender, DoWorkEventArgs args)
progressState.WriteToLog(err.Message);
progressState.State = ProgressState.StateValue.StoppedWithError;
}
- finally
- {
- if (transform != null)
- {
- progressState.StatusLabel = "Cleaning up...";
- TempFileCollection tempfiles = transform.TemporaryFiles;
- if (tempfiles != null) // tempfiles will be null when debugging is not enabled
- {
- tempfiles.Delete();
- }
- }
- }
}
private static void OnXsltMessageEncountered(object sender,
diff --git a/src/Addin.Transform/Properties/AssemblyInfo.cs b/src/Addin.Transform/Properties/AssemblyInfo.cs
deleted file mode 100644
index 49cdcbb94..000000000
--- a/src/Addin.Transform/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using Mono.Addins;
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-
-[assembly: AssemblyTitle("Addin.XSLT")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("SIL")]
-[assembly: AssemblyProduct("Addin.XSLT")]
-[assembly: AssemblyCopyright("Copyright © SIL 2007")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// 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("a8757a37-99f8-4d54-a662-e7e6fdf666e0")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Revision and Build Numbers
-// by using the '*' as shown below:
-
-[assembly: AssemblyVersion("1.9.0.10")]
-[assembly: AssemblyFileVersion("1.9.0.10")]
-[assembly: Addin]
-[assembly: AddinDependency("WeSay.AddinLib", "1.0")]
\ No newline at end of file
diff --git a/src/Addin.Transform/packages.config b/src/Addin.Transform/packages.config
deleted file mode 100644
index bd805a407..000000000
--- a/src/Addin.Transform/packages.config
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/CommonTools.Tests/CommonTools.Tests.csproj b/src/CommonTools.Tests/CommonTools.Tests.csproj
index 78007716e..1a49e701e 100644
--- a/src/CommonTools.Tests/CommonTools.Tests.csproj
+++ b/src/CommonTools.Tests/CommonTools.Tests.csproj
@@ -34,7 +34,7 @@
- ..\packages\NUnit.3.13.1\lib\net45\nunit.framework.dll
+ ..\..\packages\NUnit.3.13.1\lib\net45\nunit.framework.dll
diff --git a/src/CommonTools/CommonTools.csproj b/src/CommonTools/CommonTools.csproj
index da968d4aa..474c81bb2 100644
--- a/src/CommonTools/CommonTools.csproj
+++ b/src/CommonTools/CommonTools.csproj
@@ -51,15 +51,15 @@
.exe
- ..\packages\Mono.Addins.1.2\lib\net40\Mono.Addins.dll
+ ..\..\packages\Mono.Addins.1.2\lib\net40\Mono.Addins.dll
False
- ..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
+ ..\..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
False
- ..\packages\SIL.Windows.Forms.9.0.0-beta0154\lib\net461\SIL.Windows.Forms.dll
+ ..\..\packages\SIL.Windows.Forms.9.0.0-beta0154\lib\net461\SIL.Windows.Forms.dll
diff --git a/src/Language/Language.csproj b/src/Language/Language.csproj
index 7f0e254d2..142ca9c56 100644
--- a/src/Language/Language.csproj
+++ b/src/Language/Language.csproj
@@ -30,7 +30,7 @@
False
- ../packages/NetReflector.1.1.2009/lib/net20/NetReflector.dll
+ ../../packages/NetReflector.1.1.2009/lib/net20/NetReflector.dll
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryCachingTests.cs b/src/LexicalModel.Tests/LexEntryRepositoryCachingTests.cs
index 474e0eeaf..472952f6d 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryCachingTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryCachingTests.cs
@@ -29,8 +29,8 @@ public void OneTimeTeardown()
[SetUp]
public void Setup()
{
- _tempfolder = new TemporaryFolder();
- string persistedFilePath = _tempfolder.GetTemporaryFile();
+ _tempfolder = new TemporaryFolder("LexEntryRepositoryCachingTests");
+ string persistedFilePath = _tempfolder.GetNewTempFile(false).Path;
_repository = new LexEntryRepository(persistedFilePath);
}
@@ -38,6 +38,7 @@ public void Setup()
public void Teardown()
{
_repository.Dispose();
+ _repository.Dispose(); //added in dotnet8 conversion
}
[Test]
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryCreateItemTransitionTests.cs b/src/LexicalModel.Tests/LexEntryRepositoryCreateItemTransitionTests.cs
index a67aa38ea..a49b2a819 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryCreateItemTransitionTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryCreateItemTransitionTests.cs
@@ -21,8 +21,8 @@ public LexEntryRepositoryCreateItemTransitionTests()
[SetUp]
public override void SetUp()
{
- _tempFolder = new TemporaryFolder();
- _persistedFilePath = _tempFolder.GetTemporaryFile();
+ _tempFolder = new TemporaryFolder("LexEntryRepositoryCreateItemTransitionTests");
+ _persistedFilePath = _tempFolder.GetNewTempFile(false).Path;
DataMapperUnderTest = new LexEntryRepository(_persistedFilePath);
}
@@ -30,7 +30,7 @@ public override void SetUp()
public override void TearDown()
{
DataMapperUnderTest.Dispose();
- _tempFolder.Delete();
+ _tempFolder.Dispose();
}
[Test]
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryCreatedFromPersistedData.cs b/src/LexicalModel.Tests/LexEntryRepositoryCreatedFromPersistedData.cs
index fa84adced..0831043e4 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryCreatedFromPersistedData.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryCreatedFromPersistedData.cs
@@ -53,7 +53,7 @@ public class LexEntryRepositoryCreatedFromPersistedData :
public override void SetUp()
{
_tempFolder = new TemporaryFolder("LexEntryRepositoryCreatedFromPersistedData");
- _persistedFilePath = LiftFileInitializer.MakeFile(_tempFolder.GetTemporaryFile());
+ _persistedFilePath = LiftFileInitializer.MakeFile(_tempFolder.GetNewTempFile(false).Path);
DataMapperUnderTest = new LexEntryRepository(_persistedFilePath);
}
@@ -61,7 +61,7 @@ public override void SetUp()
public override void TearDown()
{
DataMapperUnderTest.Dispose();
- _tempFolder.Delete();
+ _tempFolder.Dispose();
}
[Test]
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryDeleteAllItemsTransitionTests.cs b/src/LexicalModel.Tests/LexEntryRepositoryDeleteAllItemsTransitionTests.cs
index 05c36687d..265acd316 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryDeleteAllItemsTransitionTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryDeleteAllItemsTransitionTests.cs
@@ -16,7 +16,7 @@ public class LexEntryRepositoryDeleteAllItemsTransitionTests :
public override void SetUp()
{
_tempFolder = new TemporaryFolder("LexEntryRepositoryDeleteAllItemsTransitionTests");
- _persistedFilePath = _tempFolder.GetTemporaryFile();
+ _persistedFilePath = _tempFolder.GetNewTempFile(false).Path;
DataMapperUnderTest = new LexEntryRepository(_persistedFilePath);
}
@@ -24,7 +24,7 @@ public override void SetUp()
public override void TearDown()
{
DataMapperUnderTest.Dispose();
- _tempFolder.Delete();
+ _tempFolder.Dispose();
}
protected override void RepopulateRepositoryFromPersistedData()
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryDeleteIdTransitionTests.cs b/src/LexicalModel.Tests/LexEntryRepositoryDeleteIdTransitionTests.cs
index 46fda71cc..ffdcaf619 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryDeleteIdTransitionTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryDeleteIdTransitionTests.cs
@@ -30,7 +30,7 @@ public override void SetUp()
public override void TearDown()
{
DataMapperUnderTest.Dispose();
- _tempFolder.Delete();
+ _tempFolder.Dispose();
}
[Test]
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryDeleteItemTransitionTests.cs b/src/LexicalModel.Tests/LexEntryRepositoryDeleteItemTransitionTests.cs
index 5f88cd177..7ab066305 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryDeleteItemTransitionTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryDeleteItemTransitionTests.cs
@@ -27,7 +27,7 @@ public override void SetUp()
public override void TearDown()
{
DataMapperUnderTest.Dispose();
- _tempFolder.Delete();
+ _tempFolder.Dispose();
}
[Test]
diff --git a/src/LexicalModel.Tests/LexEntryRepositoryTests.cs b/src/LexicalModel.Tests/LexEntryRepositoryTests.cs
index 3cf6eb28c..c832869b4 100644
--- a/src/LexicalModel.Tests/LexEntryRepositoryTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepositoryTests.cs
@@ -46,7 +46,7 @@ public void Setup()
public void TearDown()
{
_lexEntryRepository.Dispose();
- _temporaryFolder.Delete();
+ _temporaryFolder.Dispose();
}
private void MakeTestLexEntry(string writingSystemId, string lexicalForm)
diff --git a/src/LexicalModel.Tests/LexEntryRepository_GetMissingItemTests.cs b/src/LexicalModel.Tests/LexEntryRepository_GetMissingItemTests.cs
index 308bd67b5..f531ce65e 100644
--- a/src/LexicalModel.Tests/LexEntryRepository_GetMissingItemTests.cs
+++ b/src/LexicalModel.Tests/LexEntryRepository_GetMissingItemTests.cs
@@ -35,8 +35,8 @@ public void Setup()
{
DefaultCollation = new IcuRulesCollationDefinition("standard")
};
- _temporaryFolder = new TemporaryFolder();
- string filePath = _temporaryFolder.GetTemporaryFile();
+ _temporaryFolder = new TemporaryFolder("LexEntryRepository_GetMissingItemTests");
+ string filePath = _temporaryFolder.GetNewTempFile(false).Path;
_lexEntryRepository = new LexEntryRepository(filePath);
}
@@ -44,7 +44,7 @@ public void Setup()
public void TearDown()
{
_lexEntryRepository.Dispose();
- _temporaryFolder.Delete();
+ _temporaryFolder.Dispose();
}
private void CreateLexentryWithOnlyCitationForm(string citationForm, string writingSystemId)
@@ -247,8 +247,8 @@ private class TestEnvironment : IDisposable
public TestEnvironment()
{
- _temporaryFolder = new TemporaryFolder();
- string filePath = _temporaryFolder.GetTemporaryFile();
+ _temporaryFolder = new TemporaryFolder("LexEntryRepository_GetMissingItemTests");
+ string filePath = _temporaryFolder.GetNewTempFile(false).Path;
_repository = new LexEntryRepository(filePath);
}
@@ -286,7 +286,7 @@ private LexEntry CreateEntryWithDefinitionAndWs(IEnumerable populatedWri
public void Dispose()
{
_repository.Dispose();
- _temporaryFolder.Delete();
+ _temporaryFolder.Dispose();
}
}
diff --git a/src/LexicalModel.Tests/LexicalModel.Tests.csproj b/src/LexicalModel.Tests/LexicalModel.Tests.csproj
index ae7be6527..647a14101 100755
--- a/src/LexicalModel.Tests/LexicalModel.Tests.csproj
+++ b/src/LexicalModel.Tests/LexicalModel.Tests.csproj
@@ -1,245 +1,81 @@
-
-
-
+
- Debug
- AnyCPU
- 9.0.21022
- 2.0
- {123D695C-0D5D-46E5-893F-39EC4E0B01B8}
+ net8.0-windows
Library
- Properties
WeSay.LexicalModel.Tests
- LexicalModel.Tests
..\AppForTests.config
-
-
-
-
- 3.5
- v4.6.1
-
-
-
+ false
+ true
+ true
- true
- full
- false
..\..\output\Debug\
- DEBUG;TRACE
- prompt
- 4
Library
- LexicalModel.Tests
WeSay.LexicalModel.Tests
- false
true
- x86
- pdbonly
- true
..\..\output\Release\
- TRACE
- prompt
- 4
Library
- LexicalModel.Tests
true
WeSay.LexicalModel.Tests
- false
true
- true
..\..\output\Debug\
- DEBUG;TRACE
true
- full
- x86
- prompt
true
..\..\output\Release\
- TRACE
true
- true
- pdbonly
- x86
- prompt
-
- ..\packages\RelaxNG.3.2.3\lib\net40\Commons.Xml.Relaxng.dll
-
-
- False
- ..\packages\Enchant.Net.1.4.2\lib\net461\Enchant.Net.dll
-
-
- False
- ..\packages\icu.net.2.7.1\lib\net451\icu.net.dll
-
-
- ..\packages\Microsoft.DotNet.PlatformAbstractions.2.0.4\lib\net45\Microsoft.DotNet.PlatformAbstractions.dll
-
-
- ..\packages\Microsoft.Extensions.DependencyModel.2.0.4\lib\net451\Microsoft.Extensions.DependencyModel.dll
-
-
- ..\packages\NDesk.DBus.0.15.0\lib\NDesk.DBus.dll
-
-
- False
- ../packages/NetReflector.1.1.2009/lib/net20/NetReflector.dll
-
-
- False
- ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll
-
-
- False
- ..\packages\NUnit.3.13.1\lib\net45\nunit.framework.dll
-
-
- PreserveNewest
-
-
- ..\packages\SIL.Core.9.0.0-beta0154\lib\net461\SIL.Core.dll
-
-
- ..\packages\SIL.Core.Desktop.9.0.0-beta0154\lib\net461\SIL.Core.Desktop.dll
-
-
- ..\packages\SIL.Core.Tests.9.0.0-beta0154\lib\net461\SIL.Core.Tests.dll
-
-
- ..\packages\SIL.DictionaryServices.9.0.0-beta0154\lib\net461\SIL.DictionaryServices.dll
-
-
- ..\packages\SIL.Lexicon.9.0.0-beta0154\lib\net461\SIL.Lexicon.dll
-
-
- ..\packages\SIL.Lift.9.0.0-beta0154\lib\net461\SIL.Lift.dll
-
-
- ..\packages\SIL.TestUtilities.9.0.0-beta0154\lib\net461\SIL.TestUtilities.dll
-
-
- ..\packages\SIL.WritingSystems.9.0.0-beta0154\lib\net461\SIL.WritingSystems.dll
-
-
- ..\packages\SIL.WritingSystems.Tests.9.0.0-beta0154\lib\net461\SIL.WritingSystems.Tests.dll
-
-
- ..\packages\Spart.1.0.0\lib\net461\Spart.dll
-
-
-
-
- 3.5
-
-
-
-
- ..\packages\System.IO.FileSystem.AccessControl.4.7.0\lib\net461\System.IO.FileSystem.AccessControl.dll
-
-
-
-
- ..\packages\System.Security.AccessControl.4.7.0\lib\net461\System.Security.AccessControl.dll
-
-
- ..\packages\System.Security.Principal.Windows.4.7.0\lib\net461\System.Security.Principal.Windows.dll
-
-
- ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll
-
-
-
-
-
-
-
-
-
-
-
- TestResources.resx
- True
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
- {5F61C809-B6C0-4567-9603-B2198E1AD038}
- LexicalModel
-
-
- {8491FEEE-C311-4B64-BB30-A1F1C1802F45}
- WeSay.Data.Tests
-
-
- {600D0FD4-D189-41A0-9BC5-FC79AD2CF1CD}
- WeSay.Data
-
-
- {F644C902-A952-4797-9E2D-19D6051DD032}
- WeSay.Project.Tests
-
-
- {5CFD0BB3-5B2A-4911-B220-9C2286151BF0}
- WeSay.Project
-
+
-
- ResXFileCodeGenerator
- TestResources.Designer.cs
- Designer
-
+
-
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
+ $(PkgSIL_Core_Tests)\lib\net461\SIL.Core.Tests.dll
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/LexicalModel.Tests/Properties/AssemblyInfo.cs b/src/LexicalModel.Tests/Properties/AssemblyInfo.cs
deleted file mode 100644
index 983eb46c2..000000000
--- a/src/LexicalModel.Tests/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-
-[assembly: AssemblyTitle("LexicalModel.Tests")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("WeSay.Tests")]
-[assembly: AssemblyCopyright("")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// 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("052ecd1b-d5d4-40a4-ad84-412e7fb43f63")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Revision and Build Numbers
-// by using the '*' as shown below:
-
-[assembly: AssemblyVersion("1.9.0.10")]
-[assembly: AssemblyFileVersion("1.9.0.10")]
\ No newline at end of file
diff --git a/src/LexicalModel.Tests/packages.config b/src/LexicalModel.Tests/packages.config
deleted file mode 100644
index 354586863..000000000
--- a/src/LexicalModel.Tests/packages.config
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/LexicalModel/Foundation/Options/DdpOptionDisplayAdaptor.cs b/src/LexicalModel/Foundation/Options/DdpOptionDisplayAdaptor.cs
index 308042b60..5d6868815 100644
--- a/src/LexicalModel/Foundation/Options/DdpOptionDisplayAdaptor.cs
+++ b/src/LexicalModel/Foundation/Options/DdpOptionDisplayAdaptor.cs
@@ -3,7 +3,6 @@
namespace WeSay.LexicalModel.Foundation.Options
{
- [CLSCompliant(false)]
public class DdpOptionDisplayAdaptor : OptionDisplayAdaptor
{
public DdpOptionDisplayAdaptor(OptionsList allOptions, string preferredWritingSystemId)
diff --git a/src/LexicalModel/Foundation/Options/OptionDisplayAdaptor.cs b/src/LexicalModel/Foundation/Options/OptionDisplayAdaptor.cs
index 3a7647745..0607ef1e1 100644
--- a/src/LexicalModel/Foundation/Options/OptionDisplayAdaptor.cs
+++ b/src/LexicalModel/Foundation/Options/OptionDisplayAdaptor.cs
@@ -7,7 +7,6 @@
namespace WeSay.LexicalModel.Foundation.Options
{
- [CLSCompliant(false)]
public class OptionDisplayAdaptor : IChoiceSystemAdaptor