Skip to content

Commit

Permalink
Change .net framework version to 4.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
skamphuis committed Jul 6, 2022
1 parent be6d4e8 commit 24fac7e
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 23 deletions.
2 changes: 1 addition & 1 deletion My Project/Resources.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions My Project/Settings.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion>9.0.21022</ProductVersion>
Expand Down Expand Up @@ -33,7 +33,7 @@
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetFrameworkProfile />
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
Expand Down
5 changes: 3 additions & 2 deletions Ventrian.NewsArticles.vbproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -18,7 +18,7 @@
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<UseIISExpress>false</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
Expand Down Expand Up @@ -395,6 +395,7 @@
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
Expand Down
10 changes: 5 additions & 5 deletions Web References/wsStoryFeed/Reference.vb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Imports System.Xml.Serialization
Namespace wsStoryFeed

'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1087.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code"), _
System.Web.Services.WebServiceBindingAttribute(Name:="StoryFeedWSSoap", [Namespace]:="http://smart-thinker.com/webservices")> _
Expand Down Expand Up @@ -153,11 +153,11 @@ Namespace wsStoryFeed
End Class

'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1087.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub AddActionCompletedEventHandler(ByVal sender As Object, ByVal e As AddActionCompletedEventArgs)

'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1087.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class AddActionCompletedEventArgs
Expand All @@ -180,11 +180,11 @@ Namespace wsStoryFeed
End Class

'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1087.0")> _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")> _
Public Delegate Sub AddActionIfNotExistsCompletedEventHandler(ByVal sender As Object, ByVal e As AddActionIfNotExistsCompletedEventArgs)

'''<remarks/>
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.6.1087.0"), _
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0"), _
System.Diagnostics.DebuggerStepThroughAttribute(), _
System.ComponentModel.DesignerCategoryAttribute("code")> _
Partial Public Class AddActionIfNotExistsCompletedEventArgs
Expand Down
30 changes: 19 additions & 11 deletions web.config
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="RSS.aspx" type="System.Web.UI.PageHandlerFactory" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers>
<remove name="RSSHandler" />
<remove name="RSSJandler" />
</handlers>
</system.webServer>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.

The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5.2" />
</system.Web>
-->
<system.web>
<httpHandlers>
<add verb="*" path="RSS.aspx" type="System.Web.UI.PageHandlerFactory"/>
</httpHandlers>
<compilation targetFramework="4.5.2"/></system.web>
<system.webServer>
<handlers>
<remove name="RSSHandler"/>
<remove name="RSSJandler"/>
</handlers>
</system.webServer>
</configuration>

0 comments on commit 24fac7e

Please sign in to comment.