Skip to content

Commit fc8abec

Browse files
Upgrade .NET Framework 4.5 to 4.8
1 parent 525aa60 commit fc8abec

File tree

11 files changed

+62
-62
lines changed

11 files changed

+62
-62
lines changed

Build-Release.ps1

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,20 @@ Write-Host "MSBUILD = $MSBuild"
6868
$SolutionInfoPath = Join-Path -Path $SolutionRoot -ChildPath "SolutionInfo.cs"
6969
(gc -Path $SolutionInfoPath) `
7070
-replace "(?<=Version\(`")[.\d]*(?=`"\))", $ReleaseVersionNumber |
71-
sc -Path $SolutionInfoPath -Encoding UTF8
71+
Set-Content -Path $SolutionInfoPath -Encoding UTF8
7272
(gc -Path $SolutionInfoPath) `
7373
-replace "(?<=AssemblyInformationalVersion\(`")[.\w-]*(?=`"\))", "$ReleaseVersionNumber$PreReleaseName" |
74-
sc -Path $SolutionInfoPath -Encoding UTF8
74+
Set-Content -Path $SolutionInfoPath -Encoding UTF8
7575
# Set the copyright
7676
(gc -Path $SolutionInfoPath) `
7777
-replace "(?<=AssemblyCopyright\(`".*?)\d\d\d\d(?=`"\))", (Get-Date).year |
78-
sc -Path $SolutionInfoPath -Encoding UTF8
78+
Set-Content -Path $SolutionInfoPath -Encoding UTF8
7979

8080
# Build the solution in release mode (in both 4.0 and 4.5 and for MVC5)
8181
$SolutionPath = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.dnn.sln"
8282

8383
# clean sln for all deploys
84-
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net45 /maxcpucount /t:Clean
84+
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net48 /maxcpucount /t:Clean
8585
if (-not $?)
8686
{
8787
throw "The MSBuild process returned an error code."
@@ -91,7 +91,7 @@ if (-not $?)
9191
{
9292
throw "The MSBuild process returned an error code."
9393
}
94-
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net45 /maxcpucount /t:Clean
94+
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net48 /maxcpucount /t:Clean
9595
if (-not $?)
9696
{
9797
throw "The MSBuild process returned an error code."
@@ -109,7 +109,7 @@ Write-Host "Restoring nuget packages..."
109109
#build for all deploys
110110

111111
# for net 3.5
112-
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net45 /maxcpucount
112+
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net48 /maxcpucount
113113
if (-not $?)
114114
{
115115
throw "The MSBuild process returned an error code."
@@ -120,8 +120,8 @@ if (-not $?)
120120
{
121121
throw "The MSBuild process returned an error code."
122122
}
123-
# for net 4.5
124-
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net45 /maxcpucount
123+
# for net 4.8
124+
& $MSBuild "$SolutionPath" /p:Configuration=Release-Net48 /maxcpucount
125125
if (-not $?)
126126
{
127127
throw "The MSBuild process returned an error code."
@@ -152,23 +152,23 @@ New-Item $TypeScriptFolder -Type directory
152152

153153
$include = @('ClientDependency.Core.dll','ClientDependency.Core.pdb')
154154
# Need to build to specific .Net version folders
155-
$CoreBinFolderNet45 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Core\bin\Release-Net45";
156-
$CoreFolderNet45 = Join-Path -Path $CoreFolder -ChildPath "net45";
155+
$CoreBinFolderNet48 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Core\bin\Release-Net48";
156+
$CoreFolderNet48 = Join-Path -Path $CoreFolder -ChildPath "net48";
157157

158-
New-Item $CoreFolderNet45 -Type directory
159-
Copy-Item "$CoreBinFolderNet45\*.*" -Destination $CoreFolderNet45 -Include $include
158+
New-Item $CoreFolderNet48 -Type directory
159+
Copy-Item "$CoreBinFolderNet48\*.*" -Destination $CoreFolderNet48 -Include $include
160160

161161
$include = @('ClientDependency.Core.Mvc.dll','ClientDependency.Core.Mvc.pdb')
162162
# Need to build to specific .Net version folders
163-
$MvcBinFolderNet45 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release-Net45";
164-
$MvcFolderNet45 = Join-Path -Path $MvcFolder -ChildPath "net45";
165-
New-Item $MvcFolderNet45 -Type directory
166-
#Copy-Item "$MvcBinFolderNet45\*.*" -Destination $MvcFolderNet45 -Include $include
163+
$MvcBinFolderNet48 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release-Net48";
164+
$MvcFolderNet48 = Join-Path -Path $MvcFolder -ChildPath "net48";
165+
New-Item $MvcFolderNet48 -Type directory
166+
#Copy-Item "$MvcBinFolderNet48\*.*" -Destination $MvcFolderNet48 -Include $include
167167
#need to build mvc5 separately
168-
$Mvc5BinFolderNet45 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release-MVC5";
169-
$Mvc5FolderNet45 = Join-Path -Path $Mvc5Folder -ChildPath "net45";
170-
New-Item $Mvc5FolderNet45 -Type directory
171-
#Copy-Item "$Mvc5BinFolderNet45\*.*" -Destination $Mvc5FolderNet45 -Include $include
168+
$Mvc5BinFolderNet48 = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Mvc\bin\Release-MVC5";
169+
$Mvc5FolderNet48 = Join-Path -Path $Mvc5Folder -ChildPath "net48";
170+
New-Item $Mvc5FolderNet48 -Type directory
171+
#Copy-Item "$Mvc5BinFolderNet48\*.*" -Destination $Mvc5FolderNet48 -Include $include
172172

173173
$include = @('ClientDependency.Less.dll','ClientDependency.Less.pdb')
174174
$LessBinFolder = Join-Path -Path $SolutionRoot -ChildPath "ClientDependency.Less\bin\Release";

build/ClientDependency-Mvc.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
</dependencies>
2323
</metadata>
2424
<files>
25-
<file src="net45\*.dll" target="lib\net45" />
26-
<file src="net45\*.pdb" target="lib\net45" />
25+
<file src="net48\*.dll" target="lib\net48" />
26+
<file src="net48\*.pdb" target="lib\net48" />
2727

2828
<file src="nuget-transforms\web.config.transform" target="Content" />
2929

build/ClientDependency-Mvc5.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
</metadata>
2424
<files>
2525

26-
<file src="net45\*.dll" target="lib\net45" />
27-
<file src="net45\*.pdb" target="lib\net45" />
26+
<file src="net48\*.dll" target="lib\net48" />
27+
<file src="net48\*.pdb" target="lib\net48" />
2828

2929
<file src="nuget-transforms\web.config.transform" target="Content" />
3030

build/ClientDependency.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<repository type="git" url="https://github.com/dnnsoftware/ClientDependency" />
1717
</metadata>
1818
<files>
19-
<file src="net45\*.dll" target="lib\net45" />
20-
<file src="net45\*.pdb" target="lib\net45" />
19+
<file src="net48\*.dll" target="lib\net48" />
20+
<file src="net48\*.pdb" target="lib\net48" />
2121

2222
<file src="nuget-transforms\web.config.install.xdt" target="Content" />
2323
<file src="nuget-transforms\web.config.uninstall.xdt" target="Content" />

src/ClientDependency.Core/ClientDependency.Core.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>ClientDependency.Core</RootNamespace>
1515
<AssemblyName>ClientDependency.Core</AssemblyName>
16-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1717
<FileAlignment>512</FileAlignment>
1818
<SccProjectName>
1919
</SccProjectName>
@@ -42,7 +42,7 @@
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
<CodeAnalysisRuleSet>SecurityRules.ruleset</CodeAnalysisRuleSet>
45-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
45+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
4646
<PlatformTarget>AnyCPU</PlatformTarget>
4747
</PropertyGroup>
4848
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -53,7 +53,7 @@
5353
<ErrorReport>prompt</ErrorReport>
5454
<WarningLevel>4</WarningLevel>
5555
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
56-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
56+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
5757
<PlatformTarget>AnyCPU</PlatformTarget>
5858
</PropertyGroup>
5959
<PropertyGroup>
@@ -62,26 +62,26 @@
6262
<PropertyGroup>
6363
<AssemblyOriginatorKeyFile>cdf.snk</AssemblyOriginatorKeyFile>
6464
</PropertyGroup>
65-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-Net45|AnyCPU'">
65+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-Net48|AnyCPU'">
6666
<DebugSymbols>true</DebugSymbols>
67-
<OutputPath>bin\Debug-Net45\</OutputPath>
67+
<OutputPath>bin\Debug-Net48\</OutputPath>
6868
<DefineConstants>DEBUG;TRACE</DefineConstants>
6969
<DebugType>full</DebugType>
7070
<PlatformTarget>AnyCPU</PlatformTarget>
7171
<ErrorReport>prompt</ErrorReport>
7272
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
73-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
73+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
7474
<PlatformTarget>AnyCPU</PlatformTarget>
7575
</PropertyGroup>
76-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-Net45|AnyCPU'">
76+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-Net48|AnyCPU'">
7777
<DebugType>pdbonly</DebugType>
7878
<Optimize>true</Optimize>
79-
<OutputPath>bin\Release-Net45\</OutputPath>
79+
<OutputPath>bin\Release-Net48\</OutputPath>
8080
<DefineConstants>TRACE;MVC</DefineConstants>
8181
<ErrorReport>prompt</ErrorReport>
8282
<WarningLevel>4</WarningLevel>
8383
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
84-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
84+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
8585
<PlatformTarget>AnyCPU</PlatformTarget>
8686
</PropertyGroup>
8787
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release-Net35|AnyCPU'">

src/ClientDependency.DNN.sln

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,24 +69,24 @@ Global
6969
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7070
Debug|Any CPU = Debug|Any CPU
7171
Debug-MVC5|Any CPU = Debug-MVC5|Any CPU
72-
Debug-Net45|Any CPU = Debug-Net45|Any CPU
72+
Debug-Net48|Any CPU = Debug-Net48|Any CPU
7373
Release|Any CPU = Release|Any CPU
7474
Release-MVC5|Any CPU = Release-MVC5|Any CPU
75-
Release-Net45|Any CPU = Release-Net45|Any CPU
75+
Release-Net48|Any CPU = Release-Net48|Any CPU
7676
EndGlobalSection
7777
GlobalSection(ProjectConfigurationPlatforms) = postSolution
7878
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7979
{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
80+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-MVC5|Any CPU.ActiveCfg = Debug-Net48|Any CPU
81+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-MVC5|Any CPU.Build.0 = Debug-Net48|Any CPU
82+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-Net48|Any CPU.ActiveCfg = Debug-Net48|Any CPU
83+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug-Net48|Any CPU.Build.0 = Debug-Net48|Any CPU
8484
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
8585
{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
86+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-MVC5|Any CPU.ActiveCfg = Release-Net48|Any CPU
87+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-MVC5|Any CPU.Build.0 = Release-Net48|Any CPU
88+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-Net48|Any CPU.ActiveCfg = Release-Net48|Any CPU
89+
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Release-Net48|Any CPU.Build.0 = Release-Net48|Any CPU
9090
EndGlobalSection
9191
GlobalSection(SolutionProperties) = preSolution
9292
HideSolutionNode = FALSE

src/ClientDependency.Mvc/ClientDependency.Core.Mvc.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>ClientDependency.Core.Mvc</RootNamespace>
1515
<AssemblyName>ClientDependency.Core.Mvc</AssemblyName>
16-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1717
<FileAlignment>512</FileAlignment>
1818
<SccProjectName>
1919
</SccProjectName>
@@ -42,7 +42,7 @@
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
45-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
45+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
4646
<PlatformTarget>AnyCPU</PlatformTarget>
4747
</PropertyGroup>
4848
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -53,7 +53,7 @@
5353
<ErrorReport>prompt</ErrorReport>
5454
<WarningLevel>4</WarningLevel>
5555
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
56-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
56+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
5757
<PlatformTarget>AnyCPU</PlatformTarget>
5858
</PropertyGroup>
5959
<PropertyGroup>
@@ -62,26 +62,26 @@
6262
<PropertyGroup>
6363
<AssemblyOriginatorKeyFile>cdf.snk</AssemblyOriginatorKeyFile>
6464
</PropertyGroup>
65-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-Net45|AnyCPU'">
65+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-Net48|AnyCPU'">
6666
<DebugSymbols>true</DebugSymbols>
67-
<OutputPath>bin\Debug-Net45\</OutputPath>
67+
<OutputPath>bin\Debug-Net48\</OutputPath>
6868
<DefineConstants>DEBUG;TRACE</DefineConstants>
6969
<DebugType>full</DebugType>
7070
<PlatformTarget>AnyCPU</PlatformTarget>
7171
<ErrorReport>prompt</ErrorReport>
7272
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
73-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
73+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
7474
<PlatformTarget>AnyCPU</PlatformTarget>
7575
</PropertyGroup>
76-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-Net45|AnyCPU'">
76+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-Net48|AnyCPU'">
7777
<DebugType>pdbonly</DebugType>
7878
<Optimize>true</Optimize>
79-
<OutputPath>bin\Release-Net45\</OutputPath>
79+
<OutputPath>bin\Release-Net48\</OutputPath>
8080
<DefineConstants>TRACE</DefineConstants>
8181
<ErrorReport>prompt</ErrorReport>
8282
<WarningLevel>4</WarningLevel>
8383
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
84-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
84+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
8585
<PlatformTarget>AnyCPU</PlatformTarget>
8686
</PropertyGroup>
8787
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-MVC5|AnyCPU'">
@@ -92,7 +92,7 @@
9292
<PlatformTarget>AnyCPU</PlatformTarget>
9393
<ErrorReport>prompt</ErrorReport>
9494
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
95-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
95+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
9696
<PlatformTarget>AnyCPU</PlatformTarget>
9797
</PropertyGroup>
9898
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-MVC5|AnyCPU'">
@@ -103,7 +103,7 @@
103103
<ErrorReport>prompt</ErrorReport>
104104
<WarningLevel>4</WarningLevel>
105105
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
106-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
106+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
107107
<PlatformTarget>AnyCPU</PlatformTarget>
108108
</PropertyGroup>
109109
<ItemGroup>

src/ClientDependency.UnitTests/ClientDependency.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>ClientDependency.UnitTests</RootNamespace>
1515
<AssemblyName>ClientDependency.UnitTests</AssemblyName>
16-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
16+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1717
<FileAlignment>512</FileAlignment>
1818
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1919
<SccProjectName>

src/ClientDependency.Web.Test/ClientDependency.Web.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<AppDesignerFolder>Properties</AppDesignerFolder>
1313
<RootNamespace>ClientDependency.Web.Test</RootNamespace>
1414
<AssemblyName>ClientDependency.Web.Test</AssemblyName>
15-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
15+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1616
<SccProjectName>
1717
</SccProjectName>
1818
<SccLocalPath>

src/ClientDependency.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ Global
7979
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8080
Debug|Any CPU = Debug|Any CPU
8181
Debug-MVC5|Any CPU = Debug-MVC5|Any CPU
82-
Debug-Net45|Any CPU = Debug-Net45|Any CPU
82+
Debug-Net48|Any CPU = Debug-Net48|Any CPU
8383
Release|Any CPU = Release|Any CPU
8484
Release-MVC5|Any CPU = Release-MVC5|Any CPU
8585
Release-Net35|Any CPU = Release-Net35|Any CPU
86-
Release-Net45|Any CPU = Release-Net45|Any CPU
86+
Release-Net48|Any CPU = Release-Net48|Any CPU
8787
EndGlobalSection
8888
GlobalSection(ProjectConfigurationPlatforms) = postSolution
8989
{EA35B06D-0CC8-4830-A3F7-9BB3D36D0FAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU

0 commit comments

Comments
 (0)