Skip to content

Commit 8ef521f

Browse files
authored
net452 => net462 (exceptionless#250)
1 parent 626ce70 commit 8ef521f

File tree

13 files changed

+33
-33
lines changed

13 files changed

+33
-33
lines changed

samples/Exceptionless.SampleWcf/Exceptionless.SampleWcf.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>Exceptionless.SampleWcf</RootNamespace>
1515
<AssemblyName>Exceptionless.SampleWcf</AssemblyName>
16-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
17-
<TargetFrameworkVersionProperty Condition=" '$(TargetFrameworkVersionProperty)' == '' ">net452</TargetFrameworkVersionProperty>
16+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
17+
<TargetFrameworkVersionProperty Condition=" '$(TargetFrameworkVersionProperty)' == '' ">net462</TargetFrameworkVersionProperty>
1818
<UseIISExpress>true</UseIISExpress>
1919
<FileUpgradeFlags>
2020
</FileUpgradeFlags>

samples/Exceptionless.SampleWeb/Exceptionless.SampleWeb.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<OldToolsVersion>4.0</OldToolsVersion>
1818
<UpgradeBackupLocation>
1919
</UpgradeBackupLocation>
20-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
21-
<TargetFrameworkVersionProperty Condition=" '$(TargetFrameworkVersionProperty)' == '' ">net452</TargetFrameworkVersionProperty>
20+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
21+
<TargetFrameworkVersionProperty Condition=" '$(TargetFrameworkVersionProperty)' == '' ">net462</TargetFrameworkVersionProperty>
2222
<TargetFrameworkProfile />
2323
<UseIISExpress>true</UseIISExpress>
2424
<IISExpressSSLPort />

samples/Exceptionless.SampleWebApi/Exceptionless.SampleWebApi.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net452</TargetFramework>
4+
<TargetFramework>net462</TargetFramework>
55
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
66
<AssemblyName>Exceptionless.SampleWebApi</AssemblyName>
77
<OutputType>Exe</OutputType>
@@ -31,11 +31,11 @@
3131
<PackageReference Include="Owin" Version="1.0" />
3232
</ItemGroup>
3333

34-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' ">
34+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' ">
3535
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
3636
</PropertyGroup>
3737

38-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
38+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
3939
<Reference Include="System" />
4040
<Reference Include="Microsoft.CSharp" />
4141
</ItemGroup>

samples/Exceptionless.SampleWindows/Exceptionless.SampleWindows.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netcoreapp3.1</TargetFramework>
44
</PropertyGroup>
55
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
6-
<TargetFrameworks>netcoreapp3.1;net452</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.1;net462</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>
@@ -17,7 +17,7 @@
1717
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
1818
</PropertyGroup>
1919

20-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
20+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
2121
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
2222
</PropertyGroup>
2323

samples/Exceptionless.SampleWpf/Exceptionless.SampleWpf.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netcoreapp3.1</TargetFramework>
44
</PropertyGroup>
55
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
6-
<TargetFrameworks>netcoreapp3.1;net452</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.1;net462</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>
@@ -16,7 +16,7 @@
1616
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
1717
</PropertyGroup>
1818

19-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
19+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
2020
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
2121
</PropertyGroup>
2222

src/Exceptionless/Exceptionless.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netstandard2.0</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
8-
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Package">
@@ -43,11 +43,11 @@
4343
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
4444
</ItemGroup>
4545

46-
<PropertyGroup Condition="'$(TargetFramework)' == 'net452'" Label="Build">
46+
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'" Label="Build">
4747
<DefineConstants>$(DefineConstants);NET45;HAVE_ADO_NET;HAVE_APP_DOMAIN;HAVE_ASYNC;HAVE_BIG_INTEGER;HAVE_BINARY_FORMATTER;HAVE_BINARY_SERIALIZATION;HAVE_BINARY_EXCEPTION_SERIALIZATION;HAVE_CAS;HAVE_CHAR_TO_LOWER_WITH_CULTURE;HAVE_CHAR_TO_STRING_WITH_CULTURE;HAVE_COM_ATTRIBUTES;HAVE_COMPONENT_MODEL;HAVE_CONCURRENT_COLLECTIONS;HAVE_COVARIANT_GENERICS;HAVE_DATA_CONTRACTS;HAVE_DATE_TIME_OFFSET;HAVE_DB_NULL_TYPE_CODE;HAVE_DYNAMIC;HAVE_EMPTY_TYPES;HAVE_ENTITY_FRAMEWORK;HAVE_EXPRESSIONS;HAVE_FAST_REVERSE;HAVE_FSHARP_TYPES;HAVE_FULL_REFLECTION;HAVE_GUID_TRY_PARSE;HAVE_HASH_SET;HAVE_ICLONEABLE;HAVE_ICONVERTIBLE;HAVE_IGNORE_DATA_MEMBER_ATTRIBUTE;HAVE_INOTIFY_COLLECTION_CHANGED;HAVE_INOTIFY_PROPERTY_CHANGING;HAVE_ISET;HAVE_LINQ;HAVE_MEMORY_BARRIER;HAVE_METHOD_IMPL_ATTRIBUTE;HAVE_NON_SERIALIZED_ATTRIBUTE;HAVE_READ_ONLY_COLLECTIONS;HAVE_REFLECTION_EMIT;HAVE_SECURITY_SAFE_CRITICAL_ATTRIBUTE;HAVE_SERIALIZATION_BINDER_BIND_TO_NAME;HAVE_STREAM_READER_WRITER_CLOSE;HAVE_STRING_JOIN_WITH_ENUMERABLE;HAVE_TIME_SPAN_PARSE_WITH_CULTURE;HAVE_TIME_SPAN_TO_STRING_WITH_CULTURE;HAVE_TIME_ZONE_INFO;HAVE_TRACE_WRITER;HAVE_TYPE_DESCRIPTOR;HAVE_UNICODE_SURROGATE_DETECTION;HAVE_VARIANT_TYPE_PARAMETERS;HAVE_VERSION_TRY_PARSE;HAVE_XLINQ;HAVE_XML_DOCUMENT;HAVE_XML_DOCUMENT_TYPE;HAVE_CONCURRENT_DICTIONARY;</DefineConstants>
4848
</PropertyGroup>
4949

50-
<ItemGroup Condition="'$(TargetFramework)' == 'net452'" Label="Framework References">
50+
<ItemGroup Condition="'$(TargetFramework)' == 'net462'" Label="Framework References">
5151
<Reference Include="Microsoft.VisualBasic" />
5252
<Reference Include="System.Configuration" />
5353
<Reference Include="System.Data" />

src/Platforms/Exceptionless.Log4net/Exceptionless.Log4net.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netstandard2.0</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
8-
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Package">
@@ -32,11 +32,11 @@
3232
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
3333
</PropertyGroup>
3434

35-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
35+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
3636
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
3737
</PropertyGroup>
3838

39-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Framework References">
39+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Framework References">
4040
<Reference Include="System.Configuration" />
4141
<Reference Include="System" />
4242
<Reference Include="Microsoft.CSharp" />

src/Platforms/Exceptionless.Mvc/Exceptionless.Mvc.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<AssemblyTitle>Exceptionless client for ASP.NET MVC 3+ applications.</AssemblyTitle>
88
<Description>Exceptionless client for ASP.NET MVC 3+ applications. $(Description)</Description>
99
<PackageTags>$(PackageTags);ASP.NET;MVC</PackageTags>
10-
<TargetFramework>net452</TargetFramework>
10+
<TargetFramework>net462</TargetFramework>
1111
</PropertyGroup>
1212

1313
<ItemGroup Label="Build">
@@ -34,11 +34,11 @@
3434
<PackageReference Include="Microsoft.AspNet.Mvc" Version="3.0.20105.1" />
3535
</ItemGroup>
3636

37-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
37+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
3838
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
3939
</PropertyGroup>
4040

41-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Framework References">
41+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Framework References">
4242
<Reference Include="System.Configuration" />
4343
<Reference Include="System.Web" />
4444
<Reference Include="System" />

src/Platforms/Exceptionless.NLog/Exceptionless.NLog.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netstandard2.0</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
8-
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Package">
@@ -32,11 +32,11 @@
3232
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
3333
</PropertyGroup>
3434

35-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
35+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
3636
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
3737
</PropertyGroup>
3838

39-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Framework References">
39+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Framework References">
4040
<Reference Include="System" />
4141
<Reference Include="Microsoft.CSharp" />
4242
</ItemGroup>

src/Platforms/Exceptionless.Web/Exceptionless.Web.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<AssemblyTitle>Exceptionless client for ASP.NET WebForms applications.</AssemblyTitle>
88
<Description>Exceptionless client for ASP.NET WebForms applications. $(Description)</Description>
99
<PackageTags>$(PackageTags);ASP.NET;WebForms;Wcf</PackageTags>
10-
<TargetFramework>net452</TargetFramework>
10+
<TargetFramework>net462</TargetFramework>
1111
</PropertyGroup>
1212

1313
<ItemGroup Label="Package">
@@ -26,11 +26,11 @@
2626
<ProjectReference Include="..\..\Exceptionless\Exceptionless.csproj" />
2727
</ItemGroup>
2828

29-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
29+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
3030
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
3131
</PropertyGroup>
3232

33-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Framework References">
33+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Framework References">
3434
<Reference Include="System.Configuration" />
3535
<Reference Include="System.ServiceModel" />
3636
<Reference Include="System.Web" />

src/Platforms/Exceptionless.WebApi/Exceptionless.WebApi.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>Exceptionless.WebApi</AssemblyName>
77
<AssemblyTitle>Exceptionless client for ASP.NET Web API applications.</AssemblyTitle>
88
<Description>Exceptionless client for ASP.NET Web API applications. $(Description)</Description>
9-
<TargetFramework>net452</TargetFramework>
9+
<TargetFramework>net462</TargetFramework>
1010
<PackageTags>$(PackageTags);ASP.NET;Web Api</PackageTags>
1111
</PropertyGroup>
1212

@@ -30,11 +30,11 @@
3030
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.7" />
3131
</ItemGroup>
3232

33-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
33+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
3434
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
3535
</PropertyGroup>
3636

37-
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Framework References">
37+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Framework References">
3838
<Reference Include="System.Configuration" />
3939
<Reference Include="System.Net.Http" />
4040
<Reference Include="System.ServiceModel" />

src/Platforms/Exceptionless.Windows/Exceptionless.Windows.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
8-
<TargetFrameworks>netcoreapp3.1;net452</TargetFrameworks>
8+
<TargetFrameworks>netcoreapp3.1;net462</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Package">
@@ -39,7 +39,7 @@
3939
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
4040
</PropertyGroup>
4141

42-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
42+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
4343
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
4444
</PropertyGroup>
4545
</Project>

src/Platforms/Exceptionless.Wpf/Exceptionless.Wpf.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
8-
<TargetFrameworks>netcoreapp3.1;net452</TargetFrameworks>
8+
<TargetFrameworks>netcoreapp3.1;net462</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Package">
@@ -39,7 +39,7 @@
3939
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
4040
</PropertyGroup>
4141

42-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' " Label="Build">
42+
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' " Label="Build">
4343
<DefineConstants>$(DefineConstants);NET45</DefineConstants>
4444
</PropertyGroup>
4545

0 commit comments

Comments
 (0)