Skip to content

Commit

Permalink
Migrated template projects to .NET 4.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCWills committed Jun 20, 2018
1 parent d7b3a62 commit 569ba97
Show file tree
Hide file tree
Showing 47 changed files with 255 additions and 343 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AlgorithmTemplate</RootNamespace>
<AssemblyName>AlgorithmTemplateLibrary</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AlgorithmTemplateService</RootNamespace>
<AssemblyName>AlgorithmTemplateService</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>

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

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
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AlgorithmTemplateService</RootNamespace>
<AssemblyName>AlgorithmTemplateServiceConsole</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down
32 changes: 16 additions & 16 deletions Source/Templates/CSharp/AlgorithmTemplateServiceConsole/App.config
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="categorizedSettings" type="GSF.Configuration.CategorizedSettingsSection, GSF.Core" />
<section name="categorizedSettings" type="GSF.Configuration.CategorizedSettingsSection, GSF.Core"/>
</configSections>
<categorizedSettings>
<systemSettings>
<add name="OptimizationsConnectionString" value="" description="Specifies which optimizations to enable for the system." encrypted="false" />
<add name="OptimizationsConnectionString" value="" description="Specifies which optimizations to enable for the system." encrypted="false"/>
</systemSettings>
<clientHelper>
<add name="Username" value="" description="Username to be used for authentication with the service." encrypted="false" scope="User" />
<add name="Password" value="" description="Password to be used for authentication with the service." encrypted="true" scope="User" />
<add name="SerializationFormat" value="Binary" description="Message serialization format for interactions with service, one of: Xml, Json or Binary. Default is Binary." encrypted="false" />
<add name="StatusMessageFilter" value="Filter -Remove 0" description="Command used to negotiate status message filter when client connects to the ServiceHelper." encrypted="false" />
<add name="Username" value="" description="Username to be used for authentication with the service." encrypted="false" scope="User"/>
<add name="Password" value="" description="Password to be used for authentication with the service." encrypted="true" scope="User"/>
<add name="SerializationFormat" value="Binary" description="Message serialization format for interactions with service, one of: Xml, Json or Binary. Default is Binary." encrypted="false"/>
<add name="StatusMessageFilter" value="Filter -Remove 0" description="Command used to negotiate status message filter when client connects to the ServiceHelper." encrypted="false"/>
</clientHelper>
<remotingClient>
<add name="ConnectionString" value="server=localhost:[REMOTE_CONSOLE_PORT]; interface=0.0.0.0" description="Data required by the client to connect to the server." encrypted="false" />
<add name="MaxConnectionAttempts" value="-1" description="Maximum number of times the client will attempt to connect to the server." encrypted="false" />
<add name="SendBufferSize" value="32768" description="Size of the buffer used by the client for sending data from the server." encrypted="false" />
<add name="ReceiveBufferSize" value="32768" description="Size of the buffer used by the client for receiving data from the server." encrypted="false" />
<add name="PayloadAware" value="True" description="True if payload boundaries are to be preserved during transmission, otherwise False." encrypted="false" />
<add name="IntegratedSecurity" value="True" description="True if the current Windows account credentials are used for authentication, otherwise False." encrypted="false" />
<add name="AllowDualStackSocket" value="True" description="True if dual-mode socket is allowed when IP address is IPv6, otherwise False." encrypted="false" />
<add name="MaxSendQueueSize" value="500000" description="The maximum size of the send queue before payloads are dumped from the queue." encrypted="false" />
<add name="ConnectionString" value="server=localhost:[REMOTE_CONSOLE_PORT]; interface=0.0.0.0" description="Data required by the client to connect to the server." encrypted="false"/>
<add name="MaxConnectionAttempts" value="-1" description="Maximum number of times the client will attempt to connect to the server." encrypted="false"/>
<add name="SendBufferSize" value="32768" description="Size of the buffer used by the client for sending data from the server." encrypted="false"/>
<add name="ReceiveBufferSize" value="32768" description="Size of the buffer used by the client for receiving data from the server." encrypted="false"/>
<add name="PayloadAware" value="True" description="True if payload boundaries are to be preserved during transmission, otherwise False." encrypted="false"/>
<add name="IntegratedSecurity" value="True" description="True if the current Windows account credentials are used for authentication, otherwise False." encrypted="false"/>
<add name="AllowDualStackSocket" value="True" description="True if dual-mode socket is allowed when IP address is IPv6, otherwise False." encrypted="false"/>
<add name="MaxSendQueueSize" value="500000" description="The maximum size of the send queue before payloads are dumped from the queue." encrypted="false"/>
</remotingClient>
</categorizedSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AlgorithmTemplate</RootNamespace>
<AssemblyName>AlgorithmTemplateTestHarness</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -63,6 +64,7 @@
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>
</configuration>

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

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
Expand Up @@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>AlgorithmTemplate</RootNamespace>
<AssemblyName>AlgorithmTemplateLibrary</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
<Name>AlgorithmTemplateLibrary</Name>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AlgorithmTemplateService</RootNamespace>
<AssemblyName>AlgorithmTemplateService</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>

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

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
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AlgorithmTemplateService</RootNamespace>
<AssemblyName>AlgorithmTemplateServiceConsole</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down
Loading

0 comments on commit 569ba97

Please sign in to comment.