Skip to content

Commit 4329359

Browse files
committed
- removed .net 3.5 support
1 parent 84e6007 commit 4329359

4 files changed

Lines changed: 4 additions & 12 deletions

File tree

.build/package.msbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Import Project="Shuttle.Core.MSBuild.targets" />
1010

1111
<ItemGroup>
12-
<Framework Include="net35-full;net40-full;net45-full;net451-full" />
12+
<Framework Include="net40-full;net45-full;net451-full" />
1313
<ProjectReference Include="..\$(PackageAssembly)\$(PackageAssembly).csproj" />
1414
</ItemGroup>
1515

Shuttle.Core.Data.Tests/Shuttle.Core.Data.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<HintPath>..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
4040
</Reference>
4141
<Reference Include="Shuttle.Core.Infrastructure">
42-
<HintPath>..\packages\shuttle-core-infrastructure.3.1.5\lib\net35-full\Shuttle.Core.Infrastructure.dll</HintPath>
42+
<HintPath>..\packages\shuttle-core-infrastructure.3.1.5\lib\net40-full\Shuttle.Core.Infrastructure.dll</HintPath>
4343
</Reference>
4444
<Reference Include="System" />
4545
<Reference Include="System.Configuration" />

Shuttle.Core.Data/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
33

4-
#if NET35FULL
5-
[assembly: AssemblyTitle("Shuttle.Core.Data for .NET Framework 3.5")]
6-
#endif
7-
84
#if NET40FULL
95
[assembly: AssemblyTitle("Shuttle.Core.Data for .NET Framework 4.0")]
106
#endif

Shuttle.Core.Data/Shuttle.Core.Data.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,7 @@
3434
<Prefer32Bit>false</Prefer32Bit>
3535
</PropertyGroup>
3636
<PropertyGroup>
37-
<Framework Condition=" '$(Framework)' == '' ">net35-full</Framework>
38-
</PropertyGroup>
39-
<PropertyGroup Condition="'$(Framework)' == 'net35-full'">
40-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
41-
<DefineConstants>$(DefineConstants);NET35FULL</DefineConstants>
37+
<Framework Condition=" '$(Framework)' == '' ">net40-full</Framework>
4238
</PropertyGroup>
4339
<PropertyGroup Condition="'$(Framework)' == 'net40-full'">
4440
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
@@ -54,7 +50,7 @@
5450
</PropertyGroup>
5551
<ItemGroup>
5652
<Reference Include="Shuttle.Core.Infrastructure">
57-
<HintPath>..\packages\shuttle-core-infrastructure.3.1.5\lib\net35-full\Shuttle.Core.Infrastructure.dll</HintPath>
53+
<HintPath>..\packages\shuttle-core-infrastructure.3.1.5\lib\net40-full\Shuttle.Core.Infrastructure.dll</HintPath>
5854
</Reference>
5955
<Reference Include="System" />
6056
<Reference Include="System.configuration" />

0 commit comments

Comments
 (0)