Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit fcc876e

Browse files
committed
Update .Net framework to 4.7.2
1 parent e64dad8 commit fcc876e

File tree

3 files changed

+39
-31
lines changed

3 files changed

+39
-31
lines changed

VideoAccessTokenServer/VideoAccessTokenServer.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<AppDesignerFolder>Properties</AppDesignerFolder>
1515
<RootNamespace>VideoAccessTokenServer</RootNamespace>
1616
<AssemblyName>VideoAccessTokenServer</AssemblyName>
17-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
17+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
1818
<UseIISExpress>true</UseIISExpress>
1919
<IISExpressSSLPort />
2020
<IISExpressAnonymousAuthentication />
@@ -24,6 +24,7 @@
2424
<NuGetPackageImportStamp>
2525
</NuGetPackageImportStamp>
2626
<Use64BitIISExpress />
27+
<TargetFrameworkProfile />
2728
</PropertyGroup>
2829
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2930
<DebugSymbols>true</DebugSymbols>
@@ -59,6 +60,7 @@
5960
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
6061
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
6162
</Reference>
63+
<Reference Include="System.Data.DataSetExtensions" />
6264
<Reference Include="System.IdentityModel.Tokens.Jwt, Version=6.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6365
<HintPath>..\packages\System.IdentityModel.Tokens.Jwt.6.8.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll</HintPath>
6466
</Reference>
@@ -70,8 +72,6 @@
7072
<Reference Include="System.ComponentModel.DataAnnotations" />
7173
<Reference Include="System" />
7274
<Reference Include="System.Data" />
73-
<Reference Include="System.Core" />
74-
<Reference Include="System.Data.DataSetExtensions" />
7575
<Reference Include="System.Web.Extensions" />
7676
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
7777
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.Helpers.dll</HintPath>
@@ -91,13 +91,13 @@
9191
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
9292
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
9393
</Reference>
94-
<Reference Include="System.Xml.Linq" />
9594
<Reference Include="System.Drawing" />
9695
<Reference Include="System.Web" />
9796
<Reference Include="System.Xml" />
9897
<Reference Include="System.Configuration" />
9998
<Reference Include="System.Web.Services" />
10099
<Reference Include="System.EnterpriseServices" />
100+
<Reference Include="System.Xml.Linq" />
101101
<Reference Include="Twilio, Version=5.52.1.0, Culture=neutral, processorArchitecture=MSIL">
102102
<HintPath>..\packages\Twilio.5.52.1\lib\net451\Twilio.dll</HintPath>
103103
</Reference>

VideoAccessTokenServer/Web.config

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,59 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0"?>
22
<!--
33
For more information on how to configure your ASP.NET application, please visit
44
http://go.microsoft.com/fwlink/?LinkId=301880
55
-->
66
<configuration>
77
<appSettings file="Local.config">
8-
<add key="webpages:Version" value="3.0.0.0" />
9-
<add key="webpages:Enabled" value="false" />
10-
<add key="ClientValidationEnabled" value="true" />
11-
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
8+
<add key="webpages:Version" value="3.0.0.0"/>
9+
<add key="webpages:Enabled" value="false"/>
10+
<add key="ClientValidationEnabled" value="true"/>
11+
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
1212
</appSettings>
13+
<!--
14+
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
15+
16+
The following attributes can be set on the <httpRuntime> tag.
17+
<system.Web>
18+
<httpRuntime targetFramework="4.7.2" />
19+
</system.Web>
20+
-->
1321
<system.web>
14-
<compilation debug="true" targetFramework="4.5.2" />
15-
<httpRuntime targetFramework="4.5.2" />
22+
<compilation debug="true" targetFramework="4.7.2"/>
23+
<httpRuntime targetFramework="4.5.2"/>
1624
</system.web>
1725
<runtime>
1826
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
1927
<dependentAssembly>
20-
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
21-
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
28+
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
29+
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
2230
</dependentAssembly>
2331
<dependentAssembly>
24-
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
25-
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
32+
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
33+
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
2634
</dependentAssembly>
2735
<dependentAssembly>
28-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
29-
<bindingRedirect oldVersion="1.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
36+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
37+
<bindingRedirect oldVersion="1.0.0.0-5.2.7.0" newVersion="5.2.7.0"/>
3038
</dependentAssembly>
3139
<dependentAssembly>
32-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
33-
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
40+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
41+
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
3442
</dependentAssembly>
3543
<dependentAssembly>
36-
<assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" />
37-
<bindingRedirect oldVersion="0.0.0.0-6.8.0.0" newVersion="6.8.0.0" />
44+
<assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
45+
<bindingRedirect oldVersion="0.0.0.0-6.8.0.0" newVersion="6.8.0.0"/>
3846
</dependentAssembly>
3947
<dependentAssembly>
40-
<assemblyIdentity name="Microsoft.IdentityModel.Tokens" publicKeyToken="31bf3856ad364e35" culture="neutral" />
41-
<bindingRedirect oldVersion="0.0.0.0-6.8.0.0" newVersion="6.8.0.0" />
48+
<assemblyIdentity name="Microsoft.IdentityModel.Tokens" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
49+
<bindingRedirect oldVersion="0.0.0.0-6.8.0.0" newVersion="6.8.0.0"/>
4250
</dependentAssembly>
4351
</assemblyBinding>
4452
</runtime>
4553
<system.codedom>
4654
<compilers>
47-
<compiler extension=".cs" language="c#;cs;csharp" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
48-
<compiler extension=".vb" language="vb;vbs;visualbasic;vbscript" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008,40000,40008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
55+
<compiler extension=".cs" language="c#;cs;csharp" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
56+
<compiler extension=".vb" language="vb;vbs;visualbasic;vbscript" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008,40000,40008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
4957
</compilers>
5058
</system.codedom>
5159
</configuration>

VideoAccessTokenServer/packages.config

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net452" />
44
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net452" />
55
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net452" />
6-
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="3.6.0" targetFramework="net452" />
7-
<package id="Microsoft.IdentityModel.JsonWebTokens" version="6.8.0" targetFramework="net452" />
8-
<package id="Microsoft.IdentityModel.Logging" version="6.8.0" targetFramework="net452" />
9-
<package id="Microsoft.IdentityModel.Tokens" version="6.8.0" targetFramework="net452" />
10-
<package id="Microsoft.Net.Compilers" version="3.8.0" targetFramework="net452" developmentDependency="true" />
6+
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="3.6.0" targetFramework="net452" requireReinstallation="true" />
7+
<package id="Microsoft.IdentityModel.JsonWebTokens" version="6.8.0" targetFramework="net452" requireReinstallation="true" />
8+
<package id="Microsoft.IdentityModel.Logging" version="6.8.0" targetFramework="net452" requireReinstallation="true" />
9+
<package id="Microsoft.IdentityModel.Tokens" version="6.8.0" targetFramework="net452" requireReinstallation="true" />
10+
<package id="Microsoft.Net.Compilers" version="3.8.0" targetFramework="net452" developmentDependency="true" requireReinstallation="true" />
1111
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" />
1212
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net452" />
13-
<package id="System.IdentityModel.Tokens.Jwt" version="6.8.0" targetFramework="net452" />
13+
<package id="System.IdentityModel.Tokens.Jwt" version="6.8.0" targetFramework="net452" requireReinstallation="true" />
1414
<package id="Twilio" version="5.52.1" targetFramework="net452" />
1515
</packages>

0 commit comments

Comments
 (0)