Skip to content

Commit 13475a5

Browse files
committed
Fixes the build after merge of latest changes
There was a built issue with .Net 3.5 and other small glitches, this should fix those
1 parent 85494df commit 13475a5

File tree

5 files changed

+109
-154
lines changed

5 files changed

+109
-154
lines changed

Build-Release.ps1

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ $SolutionInfoPath = Join-Path -Path $SolutionRoot -ChildPath "SolutionInfo.cs"
7676
$SolutionPath = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.dnn.sln"
7777

7878
# clean sln for all deploys
79-
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net35 /maxcpucount /t:Clean
79+
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net45 /maxcpucount /t:Clean
8080
if (-not $?)
8181
{
8282
throw "The MSBuild process returned an error code."
@@ -104,7 +104,7 @@ Write-Host "Restoring nuget packages..."
104104
#build for all deploys
105105

106106
# for net 3.5
107-
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net35 /maxcpucount
107+
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net45 /maxcpucount
108108
if (-not $?)
109109
{
110110
throw "The MSBuild process returned an error code."
@@ -147,28 +147,17 @@ New-Item $TypeScriptFolder -Type directory
147147

148148
$include = @('ClientDependency.Core.dll','ClientDependency.Core.pdb')
149149
# Need to build to specific .Net version folders
150-
$CoreBinFolderNet35 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Core\bin\Release-Net35";
151-
$CoreBinFolderNet40 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Core\bin\Release";
152150
$CoreBinFolderNet45 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Core\bin\Release-Net45";
153-
$CoreFolderNet35 = Join-Path -Path $CoreFolder -ChildPath "net35";
154-
$CoreFolderNet40 = Join-Path -Path $CoreFolder -ChildPath "net40";
155151
$CoreFolderNet45 = Join-Path -Path $CoreFolder -ChildPath "net45";
156-
New-Item $CoreFolderNet35 -Type directory
157-
New-Item $CoreFolderNet40 -Type directory
152+
158153
New-Item $CoreFolderNet45 -Type directory
159-
Copy-Item "$CoreBinFolderNet35\*.*" -Destination $CoreFolderNet35 -Include $include
160-
Copy-Item "$CoreBinFolderNet40\*.*" -Destination $CoreFolderNet40 -Include $include
161154
Copy-Item "$CoreBinFolderNet45\*.*" -Destination $CoreFolderNet45 -Include $include
162155

163156
$include = @('ClientDependency.Core.Mvc.dll','ClientDependency.Core.Mvc.pdb')
164157
# Need to build to specific .Net version folders
165-
$MvcBinFolderNet40 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release";
166158
$MvcBinFolderNet45 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release-Net45";
167-
$MvcFolderNet40 = Join-Path -Path $MvcFolder -ChildPath "net40";
168159
$MvcFolderNet45 = Join-Path -Path $MvcFolder -ChildPath "net45";
169-
New-Item $MvcFolderNet40 -Type directory
170160
New-Item $MvcFolderNet45 -Type directory
171-
#Copy-Item "$MvcBinFolderNet40\*.*" -Destination $MvcFolderNet40 -Include $include
172161
#Copy-Item "$MvcBinFolderNet45\*.*" -Destination $MvcFolderNet45 -Include $include
173162
#need to build mvc5 separately
174163
$Mvc5BinFolderNet45 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release-MVC5";

build/ClientDependency-Mvc.nuspec

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
</dependencies>
2323
</metadata>
2424
<files>
25-
26-
<file src="net40\*.dll" target="lib\net40" />
27-
<file src="net40\*.pdb" target="lib\net40" />
28-
2925
<file src="net45\*.dll" target="lib\net45" />
3026
<file src="net45\*.pdb" target="lib\net45" />
3127

build/ClientDependency.nuspec

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@
1616
<repository type="git" url="https://github.com/dnnsoftware/ClientDependency" />
1717
</metadata>
1818
<files>
19-
<file src="net35\*.dll" target="lib\net35" />
20-
<file src="net35\*.pdb" target="lib\net35" />
21-
22-
<file src="net40\*.dll" target="lib\net40" />
23-
<file src="net40\*.pdb" target="lib\net40" />
24-
2519
<file src="net45\*.dll" target="lib\net45" />
2620
<file src="net45\*.pdb" target="lib\net45" />
2721

src/ClientDependency.DNN.sln

Lines changed: 106 additions & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -1,118 +1,106 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27703.1
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{09017A90-7F59-40F8-8121-8B4284697BBD}"
7-
ProjectSection(SolutionItems) = preProject
8-
README.md = README.md
9-
SolutionInfo.cs = SolutionInfo.cs
10-
EndProjectSection
11-
EndProject
12-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{C5D95718-11A7-4F12-A41A-10229A87F428}"
13-
ProjectSection(SolutionItems) = preProject
14-
appveyor.yml = appveyor.yml
15-
Build-Release.ps1 = Build-Release.ps1
16-
build\ClientDependency-Coffee.nuspec = build\ClientDependency-Coffee.nuspec
17-
build\ClientDependency-Less.nuspec = build\ClientDependency-Less.nuspec
18-
build\ClientDependency-Mvc.nuspec = build\ClientDependency-Mvc.nuspec
19-
build\ClientDependency-Mvc5.nuspec = build\ClientDependency-Mvc5.nuspec
20-
build\ClientDependency-SASS.nuspec = build\ClientDependency-SASS.nuspec
21-
build\ClientDependency-TypeScript.nuspec = build\ClientDependency-TypeScript.nuspec
22-
build\ClientDependency.nuspec = build\ClientDependency.nuspec
23-
UpgradingUmbraco.txt = UpgradingUmbraco.txt
24-
EndProjectSection
25-
EndProject
26-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Config Transforms", "Config Transforms", "{37C50F26-9EDE-45F6-BDCC-39F51E0E312C}"
27-
EndProject
28-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Mvc", "Mvc", "{D8142A9E-6FDC-46BC-9767-F63767C46887}"
29-
ProjectSection(SolutionItems) = preProject
30-
build\nuget-transforms\Mvc\web.config.transform = build\nuget-transforms\Mvc\web.config.transform
31-
EndProjectSection
32-
EndProject
33-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{4D8DC7DA-0202-4338-B154-72A077FA88E8}"
34-
ProjectSection(SolutionItems) = preProject
35-
build\nuget-transforms\Core\web.config.install.xdt = build\nuget-transforms\Core\web.config.install.xdt
36-
build\nuget-transforms\Core\web.config.uninstall.xdt = build\nuget-transforms\Core\web.config.uninstall.xdt
37-
EndProjectSection
38-
EndProject
39-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{86C3F7CD-2FDA-4025-805B-7DC6C8A44DDA}"
40-
ProjectSection(SolutionItems) = preProject
41-
.nuget\NuGet.Config = .nuget\NuGet.Config
42-
.nuget\NuGet.exe = .nuget\NuGet.exe
43-
.nuget\NuGet.targets = .nuget\NuGet.targets
44-
EndProjectSection
45-
EndProject
46-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Less", "Less", "{3EAA2D5D-A830-4BA8-90AE-FBB8B307B3FD}"
47-
ProjectSection(SolutionItems) = preProject
48-
build\nuget-transforms\Less\web.config.transform = build\nuget-transforms\Less\web.config.transform
49-
EndProjectSection
50-
EndProject
51-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Coffee", "Coffee", "{761DC809-2861-4C89-8EA2-CF55304A1FD1}"
52-
ProjectSection(SolutionItems) = preProject
53-
build\nuget-transforms\Coffee\web.config.transform = build\nuget-transforms\Coffee\web.config.transform
54-
EndProjectSection
55-
EndProject
56-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sass", "Sass", "{9598A99A-018C-405C-ACAA-75D7165F3104}"
57-
ProjectSection(SolutionItems) = preProject
58-
build\nuget-transforms\SASS\web.config.transform = build\nuget-transforms\SASS\web.config.transform
59-
EndProjectSection
60-
EndProject
61-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TypeScript", "TypeScript", "{CABF4276-D3DD-4497-BF63-B7527A91A1D8}"
62-
ProjectSection(SolutionItems) = preProject
63-
build\nuget-transforms\TypeScript\web.config.transform = build\nuget-transforms\TypeScript\web.config.transform
64-
EndProjectSection
65-
EndProject
66-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientDependency.Core", "ClientDependency.Core\ClientDependency.Core.csproj", "{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}"
67-
EndProject
68-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco4.ClientDependency", "Umbraco4.ClientDependency\Umbraco4.ClientDependency.csproj", "{08DFBA02-97A5-496C-9272-09CE98C50BF5}"
69-
EndProject
70-
Global
71-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
72-
Debug|Any CPU = Debug|Any CPU
73-
Debug-MVC5|Any CPU = Debug-MVC5|Any CPU
74-
Debug-Net45|Any CPU = Debug-Net45|Any CPU
75-
Release|Any CPU = Release|Any CPU
76-
Release-MVC5|Any CPU = Release-MVC5|Any CPU
77-
Release-Net45|Any CPU = Release-Net45|Any CPU
78-
EndGlobalSection
79-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
80-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
81-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
82-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-MVC5|Any CPU.ActiveCfg = Debug-Net45|Any CPU
83-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-MVC5|Any CPU.Build.0 = Debug-Net45|Any CPU
84-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-Net45|Any CPU.ActiveCfg = Debug-Net45|Any CPU
85-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-Net45|Any CPU.Build.0 = Debug-Net45|Any CPU
86-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
87-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release|Any CPU.Build.0 = Release|Any CPU
88-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-MVC5|Any CPU.ActiveCfg = Release-Net45|Any CPU
89-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-MVC5|Any CPU.Build.0 = Release-Net45|Any CPU
90-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-Net45|Any CPU.ActiveCfg = Release-Net45|Any CPU
91-
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-Net45|Any CPU.Build.0 = Release-Net45|Any CPU
92-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
93-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Debug|Any CPU.Build.0 = Debug|Any CPU
94-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Debug-MVC5|Any CPU.ActiveCfg = Debug|Any CPU
95-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Debug-Net45|Any CPU.ActiveCfg = Debug|Any CPU
96-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Release|Any CPU.ActiveCfg = Release|Any CPU
97-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Release|Any CPU.Build.0 = Release|Any CPU
98-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Release-MVC5|Any CPU.ActiveCfg = Release|Any CPU
99-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Release-MVC5|Any CPU.Build.0 = Release|Any CPU
100-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Release-Net45|Any CPU.ActiveCfg = Release|Any CPU
101-
{08DFBA02-97A5-496C-9272-09CE98C50BF5}.Release-Net45|Any CPU.Build.0 = Release|Any CPU
102-
EndGlobalSection
103-
GlobalSection(SolutionProperties) = preSolution
104-
HideSolutionNode = FALSE
105-
EndGlobalSection
106-
GlobalSection(NestedProjects) = preSolution
107-
{37C50F26-9EDE-45F6-BDCC-39F51E0E312C} = {C5D95718-11A7-4F12-A41A-10229A87F428}
108-
{D8142A9E-6FDC-46BC-9767-F63767C46887} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
109-
{4D8DC7DA-0202-4338-B154-72A077FA88E8} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
110-
{3EAA2D5D-A830-4BA8-90AE-FBB8B307B3FD} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
111-
{761DC809-2861-4C89-8EA2-CF55304A1FD1} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
112-
{9598A99A-018C-405C-ACAA-75D7165F3104} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
113-
{CABF4276-D3DD-4497-BF63-B7527A91A1D8} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
114-
EndGlobalSection
115-
GlobalSection(ExtensibilityGlobals) = postSolution
116-
SolutionGuid = {4C38899F-9719-49EE-9862-7F1A265F9250}
117-
EndGlobalSection
118-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31410.357
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{09017A90-7F59-40F8-8121-8B4284697BBD}"
7+
ProjectSection(SolutionItems) = preProject
8+
README.md = README.md
9+
SolutionInfo.cs = SolutionInfo.cs
10+
EndProjectSection
11+
EndProject
12+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{C5D95718-11A7-4F12-A41A-10229A87F428}"
13+
ProjectSection(SolutionItems) = preProject
14+
appveyor.yml = appveyor.yml
15+
Build-Release.ps1 = Build-Release.ps1
16+
build\ClientDependency-Coffee.nuspec = build\ClientDependency-Coffee.nuspec
17+
build\ClientDependency-Less.nuspec = build\ClientDependency-Less.nuspec
18+
build\ClientDependency-Mvc.nuspec = build\ClientDependency-Mvc.nuspec
19+
build\ClientDependency-Mvc5.nuspec = build\ClientDependency-Mvc5.nuspec
20+
build\ClientDependency-SASS.nuspec = build\ClientDependency-SASS.nuspec
21+
build\ClientDependency-TypeScript.nuspec = build\ClientDependency-TypeScript.nuspec
22+
build\ClientDependency.nuspec = build\ClientDependency.nuspec
23+
UpgradingUmbraco.txt = UpgradingUmbraco.txt
24+
EndProjectSection
25+
EndProject
26+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Config Transforms", "Config Transforms", "{37C50F26-9EDE-45F6-BDCC-39F51E0E312C}"
27+
EndProject
28+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Mvc", "Mvc", "{D8142A9E-6FDC-46BC-9767-F63767C46887}"
29+
ProjectSection(SolutionItems) = preProject
30+
build\nuget-transforms\Mvc\web.config.transform = build\nuget-transforms\Mvc\web.config.transform
31+
EndProjectSection
32+
EndProject
33+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{4D8DC7DA-0202-4338-B154-72A077FA88E8}"
34+
ProjectSection(SolutionItems) = preProject
35+
build\nuget-transforms\Core\web.config.install.xdt = build\nuget-transforms\Core\web.config.install.xdt
36+
build\nuget-transforms\Core\web.config.uninstall.xdt = build\nuget-transforms\Core\web.config.uninstall.xdt
37+
EndProjectSection
38+
EndProject
39+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{86C3F7CD-2FDA-4025-805B-7DC6C8A44DDA}"
40+
ProjectSection(SolutionItems) = preProject
41+
.nuget\NuGet.Config = .nuget\NuGet.Config
42+
.nuget\NuGet.exe = .nuget\NuGet.exe
43+
.nuget\NuGet.targets = .nuget\NuGet.targets
44+
EndProjectSection
45+
EndProject
46+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Less", "Less", "{3EAA2D5D-A830-4BA8-90AE-FBB8B307B3FD}"
47+
ProjectSection(SolutionItems) = preProject
48+
build\nuget-transforms\Less\web.config.transform = build\nuget-transforms\Less\web.config.transform
49+
EndProjectSection
50+
EndProject
51+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Coffee", "Coffee", "{761DC809-2861-4C89-8EA2-CF55304A1FD1}"
52+
ProjectSection(SolutionItems) = preProject
53+
build\nuget-transforms\Coffee\web.config.transform = build\nuget-transforms\Coffee\web.config.transform
54+
EndProjectSection
55+
EndProject
56+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sass", "Sass", "{9598A99A-018C-405C-ACAA-75D7165F3104}"
57+
ProjectSection(SolutionItems) = preProject
58+
build\nuget-transforms\SASS\web.config.transform = build\nuget-transforms\SASS\web.config.transform
59+
EndProjectSection
60+
EndProject
61+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TypeScript", "TypeScript", "{CABF4276-D3DD-4497-BF63-B7527A91A1D8}"
62+
ProjectSection(SolutionItems) = preProject
63+
build\nuget-transforms\TypeScript\web.config.transform = build\nuget-transforms\TypeScript\web.config.transform
64+
EndProjectSection
65+
EndProject
66+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientDependency.Core", "ClientDependency.Core\ClientDependency.Core.csproj", "{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}"
67+
EndProject
68+
Global
69+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
70+
Debug|Any CPU = Debug|Any CPU
71+
Debug-MVC5|Any CPU = Debug-MVC5|Any CPU
72+
Debug-Net45|Any CPU = Debug-Net45|Any CPU
73+
Release|Any CPU = Release|Any CPU
74+
Release-MVC5|Any CPU = Release-MVC5|Any CPU
75+
Release-Net45|Any CPU = Release-Net45|Any CPU
76+
EndGlobalSection
77+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
78+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-MVC5|Any CPU.ActiveCfg = Debug-Net45|Any CPU
81+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-MVC5|Any CPU.Build.0 = Debug-Net45|Any CPU
82+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-Net45|Any CPU.ActiveCfg = Debug-Net45|Any CPU
83+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-Net45|Any CPU.Build.0 = Debug-Net45|Any CPU
84+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release|Any CPU.Build.0 = Release|Any CPU
86+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-MVC5|Any CPU.ActiveCfg = Release-Net45|Any CPU
87+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-MVC5|Any CPU.Build.0 = Release-Net45|Any CPU
88+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-Net45|Any CPU.ActiveCfg = Release-Net45|Any CPU
89+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-Net45|Any CPU.Build.0 = Release-Net45|Any CPU
90+
EndGlobalSection
91+
GlobalSection(SolutionProperties) = preSolution
92+
HideSolutionNode = FALSE
93+
EndGlobalSection
94+
GlobalSection(NestedProjects) = preSolution
95+
{37C50F26-9EDE-45F6-BDCC-39F51E0E312C} = {C5D95718-11A7-4F12-A41A-10229A87F428}
96+
{D8142A9E-6FDC-46BC-9767-F63767C46887} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
97+
{4D8DC7DA-0202-4338-B154-72A077FA88E8} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
98+
{3EAA2D5D-A830-4BA8-90AE-FBB8B307B3FD} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
99+
{761DC809-2861-4C89-8EA2-CF55304A1FD1} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
100+
{9598A99A-018C-405C-ACAA-75D7165F3104} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
101+
{CABF4276-D3DD-4497-BF63-B7527A91A1D8} = {37C50F26-9EDE-45F6-BDCC-39F51E0E312C}
102+
EndGlobalSection
103+
GlobalSection(ExtensibilityGlobals) = postSolution
104+
SolutionGuid = {4C38899F-9719-49EE-9862-7F1A265F9250}
105+
EndGlobalSection
106+
EndGlobal

src/SolutionInfo.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +0,0 @@
1-
using System.Reflection;
2-
using System.Security;
3-
4-
[assembly: AssemblyCompany("Shannon Deminick")]
5-
[assembly: AssemblyCopyright("Copyright © Shannon Deminick 2021")]
6-
[assembly: AssemblyTrademark("")]
7-
[assembly: AssemblyCulture("")]
8-
9-
10-
[assembly: AssemblyVersion("1.9.10")]
11-
[assembly: AssemblyFileVersion("1.9.10")]
12-
[assembly: AssemblyInformationalVersion("1.9.10")]

0 commit comments

Comments
 (0)