Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 10.0.x

- name: Restore dependencies
run: dotnet restore
Expand Down Expand Up @@ -52,4 +52,4 @@ jobs:
versions-to-fetch: 20
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


4 changes: 2 additions & 2 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 10.0.x

- name: Pack
run: dotnet pack -c Release -o Build
Expand All @@ -33,4 +33,4 @@ jobs:
run: dotnet nuget push --no-symbols --skip-duplicate -k ${{ secrets.GITHUB_TOKEN }} -s "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" Build/*.nupkg

- name: Nuget push
run: dotnet nuget push --skip-duplicate -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json Build/*.nupkg
run: dotnet nuget push --skip-duplicate -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json Build/*.nupkg
31 changes: 26 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
.vs/
.idea/
bin/
obj/
Build/

# Files for local dev
[Bb]in/
[Oo]bj/
[Bb]uild/
Thumbs.db
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.cache
*.ilk
*.log
*.sbr
[Dd]ebug*/
[Rr]elease*/
_ReSharper*/
packages/
.tmp/
tmp/
*.user
*.local.json
.terraform/
*.backup
*.bak
.venv/
**/__pycache__/

# Verify
# https://github.com/VerifyTests/Verify#received-and-verified
Expand Down
20 changes: 20 additions & 0 deletions .standard_content.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://github.com/LordMike/MBW.Tools.GhStandardContent/spec/StandardContent.json",
"meta": {
"repo": "LordMike/MBW.Utilities.ManagedSqlite",
"profiles": [
"standardContent",
"standardDotnet",
"standardNugetPush"
],
"files": [
".editorconfig",
".gitattributes",
".github/workflows/dotnet.yml",
".github/workflows/nuget.yml",
".gitignore",
"Directory.Build.props"
],
"last_updated": "2026-02-01T15:41:06.8647797+00:00"
}
}
41 changes: 19 additions & 22 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

<PropertyGroup>
<LangVersion>latest</LangVersion>
<DefaultTargetFramework>net10.0</DefaultTargetFramework>
</PropertyGroup>

<!-- Common NuGet properties -->
<PropertyGroup>
<Authors>LordMike</Authors>
Expand All @@ -14,45 +15,41 @@
<!-- Release stuff -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<!-- Ignore warning CS1591 'Missing XML comment for publicly visible type or member' -->
<NoWarn>$(NoWarn);CS1591</NoWarn>

<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<MinVerTagPrefix>v</MinVerTagPrefix>

<!-- Github packages does not support symbols, so we embed pdbs in nupkg (https://github.community/t/does-github-packages-dotnet-nuget-supports-to-publish-snupkg/123286/6) -->
<AllowedOutputExtensionsInPackageBuildOutputFolder Condition="'$(Configuration)'=='Debug'">$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>


<!-- Performance -->
<PropertyGroup>
<CopyRetryCount>1</CopyRetryCount>
<CopyRetryDelayMilliseconds>500</CopyRetryDelayMilliseconds>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="all" />
<!-- Private packages, for builds only, not to be included in dependencies -->
<PackageReference Include="Jetbrains.Annotations" Version="2025.2.4" PrivateAssets="all" />
<PackageReference Include="MinVer" Version="7.0.0" PrivateAssets="all" />
</ItemGroup>

<!-- Deterministic build paths, https://devblogs.microsoft.com/dotnet/producing-packages-with-source-link/#deterministic-builds -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>


<!-- Sourcelink -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All"/>
</ItemGroup>

<!-- Set copying files etc. to timeout faster -->
<PropertyGroup>
<CopyRetryCount>2</CopyRetryCount>
<CopyRetryDelayMilliseconds>500</CopyRetryDelayMilliseconds>
</PropertyGroup>

<!-- Ensure AssemblyInfo.cs can be included in <EmbedUntrackedSources> https://github.com/dotnet/sourcelink/issues/572 -->
<Target Name="_workaroundMsBuild1479" BeforeTargets="BeforeCompile" AfterTargets="GenerateAssemblyInfo"></Target>

<Import Project="_Imports\Local.targets" Condition="Exists('_Imports\Local.targets')" />

</Project>
40 changes: 20 additions & 20 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License
Copyright (c) 2019 Michael Bisbjerg
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
MIT License

Copyright (c) 2019 Michael Bisbjerg

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
156 changes: 78 additions & 78 deletions MBW.Utilities.ManagedSqlite.sln
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31105.61
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5A21CA7B-C932-4454-A9DB-5A341A46AE66}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7F205CD8-F964-4521-95FF-15A73F05C893}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Core", "src\MBW.Utilities.ManagedSqlite.Core\MBW.Utilities.ManagedSqlite.Core.csproj", "{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Core.Tests", "src\MBW.Utilities.ManagedSqlite.Core.Tests\MBW.Utilities.ManagedSqlite.Core.Tests.csproj", "{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Reader", "src\MBW.Utilities.ManagedSqlite.Reader\MBW.Utilities.ManagedSqlite.Reader.csproj", "{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Sql", "src\MBW.Utilities.ManagedSqlite.Sql\MBW.Utilities.ManagedSqlite.Sql.csproj", "{3B41163B-8FCB-4569-9843-510DF5D6A91D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestDataGenerator", "src\TestDataGenerator\TestDataGenerator.csproj", "{901F8D38-6910-47C3-8D9C-44EF487DEF46}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Sql.Tests", "src\MBW.Utilities.ManagedSqlite.Sql.Tests\MBW.Utilities.ManagedSqlite.Sql.Tests.csproj", "{162FE8EB-FB16-47A6-912A-C018DC4E962A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Imports", "_Imports", "{63529930-D46E-4D5A-989F-29EA708A1261}"
ProjectSection(SolutionItems) = preProject
_Imports\Local.targets = _Imports\Local.targets
_Imports\Test.targets = _Imports\Test.targets
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Release|Any CPU.Build.0 = Release|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Release|Any CPU.Build.0 = Release|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Release|Any CPU.Build.0 = Release|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Release|Any CPU.Build.0 = Release|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Debug|Any CPU.Build.0 = Debug|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Release|Any CPU.ActiveCfg = Release|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Release|Any CPU.Build.0 = Release|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{3B41163B-8FCB-4569-9843-510DF5D6A91D} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{901F8D38-6910-47C3-8D9C-44EF487DEF46} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{162FE8EB-FB16-47A6-912A-C018DC4E962A} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{63529930-D46E-4D5A-989F-29EA708A1261} = {5A21CA7B-C932-4454-A9DB-5A341A46AE66}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {74AACA01-FA22-4FF7-834F-9B5B6E76EBB1}
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31105.61
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5A21CA7B-C932-4454-A9DB-5A341A46AE66}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7F205CD8-F964-4521-95FF-15A73F05C893}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Core", "src\MBW.Utilities.ManagedSqlite.Core\MBW.Utilities.ManagedSqlite.Core.csproj", "{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Core.Tests", "src\MBW.Utilities.ManagedSqlite.Core.Tests\MBW.Utilities.ManagedSqlite.Core.Tests.csproj", "{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Reader", "src\MBW.Utilities.ManagedSqlite.Reader\MBW.Utilities.ManagedSqlite.Reader.csproj", "{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Sql", "src\MBW.Utilities.ManagedSqlite.Sql\MBW.Utilities.ManagedSqlite.Sql.csproj", "{3B41163B-8FCB-4569-9843-510DF5D6A91D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestDataGenerator", "src\TestDataGenerator\TestDataGenerator.csproj", "{901F8D38-6910-47C3-8D9C-44EF487DEF46}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MBW.Utilities.ManagedSqlite.Sql.Tests", "src\MBW.Utilities.ManagedSqlite.Sql.Tests\MBW.Utilities.ManagedSqlite.Sql.Tests.csproj", "{162FE8EB-FB16-47A6-912A-C018DC4E962A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Imports", "_Imports", "{63529930-D46E-4D5A-989F-29EA708A1261}"
ProjectSection(SolutionItems) = preProject
_Imports\Local.targets = _Imports\Local.targets
_Imports\Test.targets = _Imports\Test.targets
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA}.Release|Any CPU.Build.0 = Release|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3}.Release|Any CPU.Build.0 = Release|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629}.Release|Any CPU.Build.0 = Release|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B41163B-8FCB-4569-9843-510DF5D6A91D}.Release|Any CPU.Build.0 = Release|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Debug|Any CPU.Build.0 = Debug|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Release|Any CPU.ActiveCfg = Release|Any CPU
{901F8D38-6910-47C3-8D9C-44EF487DEF46}.Release|Any CPU.Build.0 = Release|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{162FE8EB-FB16-47A6-912A-C018DC4E962A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{CC1ED7E9-3D0F-418D-A8DE-CC4A3F98D1BA} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{FE9497EE-8CF5-4CBE-B051-398F32E7ACD3} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{FD5FA3F8-587F-4D45-96B2-1FFA0F419629} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{3B41163B-8FCB-4569-9843-510DF5D6A91D} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{901F8D38-6910-47C3-8D9C-44EF487DEF46} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{162FE8EB-FB16-47A6-912A-C018DC4E962A} = {7F205CD8-F964-4521-95FF-15A73F05C893}
{63529930-D46E-4D5A-989F-29EA708A1261} = {5A21CA7B-C932-4454-A9DB-5A341A46AE66}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {74AACA01-FA22-4FF7-834F-9B5B6E76EBB1}
EndGlobalSection
EndGlobal
Loading
Loading