Skip to content

Commit a402e84

Browse files
authored
Merge pull request #141 from koenbeuk/remove-legacy-support
Removed V1/V2 support
2 parents 634a441 + f734bb6 commit a402e84

File tree

169 files changed

+81
-672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+81
-672
lines changed

Directory.Build.props

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<LangVersion>9.0</LangVersion>
66
<Nullable>enable</Nullable>
77
<EnableNETAnalyzers>true</EnableNETAnalyzers>
8-
<Configurations>Debug;Release;DebugV1;ReleaseV1;DebugV2;ReleaseV2</Configurations>
8+
<Configurations>Debug;Release</Configurations>
99
</PropertyGroup>
1010

1111
<PropertyGroup>
@@ -23,22 +23,4 @@
2323
<MicrosoftExtensionsVersion>6.0.0</MicrosoftExtensionsVersion>
2424
</PropertyGroup>
2525

26-
<PropertyGroup Condition=" '$(Configuration)' == 'DebugV2' Or '$(Configuration)' == 'ReleaseV2' ">
27-
<EFCoreTriggeredVersion>2</EFCoreTriggeredVersion>
28-
<EFCorePackageVersion>5.0.0</EFCorePackageVersion>
29-
<MicrosoftExtensionsVersion>5.0.0</MicrosoftExtensionsVersion>
30-
</PropertyGroup>
31-
32-
<PropertyGroup Condition=" '$(Configuration)' == 'DebugV1' Or '$(Configuration)' == 'ReleaseV1' ">
33-
<EFCoreTriggeredVersion>1</EFCoreTriggeredVersion>
34-
<EFCorePackageVersion>3.1.0</EFCorePackageVersion>
35-
<MicrosoftExtensionsVersion>3.1.0</MicrosoftExtensionsVersion>
36-
</PropertyGroup>
37-
38-
<Target Name="Debug">
39-
<Message Importance="High" Text="Configuration: $(Configuration)" />
40-
<Message Importance="High" Text="EFCoreTriggeredVersion: $(EFCoreTriggeredVersion)" />
41-
<Message Importance="High" Text="EFCorePackageVersion: $(EFCorePackageVersion)" />
42-
</Target>
43-
4426
</Project>

EntityFrameworkCore.Triggered.Samples.slnf

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22
"solution": {
33
"path": "EntityFrameworkCore.Triggered.sln",
44
"projects": [
5-
"samples\\v1\\1 - HelloWorld\\1 - HelloWorld.csproj",
6-
"samples\\v2\\1 - HelloWorld\\1 - HelloWorld.csproj",
7-
"samples\\v2\\2 - PrimarySchool\\2 - PrimarySchool.csproj",
8-
"samples\\v2\\3 - StudentManagerAspNetCore\\3 - StudentManagerAspNetCore.csproj",
9-
"samples\\v2\\4 - BlazorTests\\4 - BlazorTests.csproj",
5+
"samples\\1 - HelloWorld\\1 - HelloWorld.csproj",
6+
"samples\\2 - PrimarySchool\\2 - PrimarySchool.csproj",
7+
"samples\\3 - StudentManagerAspNetCore\\3 - StudentManagerAspNetCore.csproj",
8+
"samples\\4 - BlazorTests\\4 - BlazorTests.csproj",
109
"src\\EntityFrameworkCore.Triggered.Abstractions\\EntityFrameworkCore.Triggered.Abstractions.csproj",
11-
"src\\EntityFrameworkCore.Triggered.AspNetCore\\EntityFrameworkCore.Triggered.AspNetCore.csproj",
1210
"src\\EntityFrameworkCore.Triggered.Transactions.Abstractions\\EntityFrameworkCore.Triggered.Transactions.Abstractions.csproj",
1311
"src\\EntityFrameworkCore.Triggered.Transactions\\EntityFrameworkCore.Triggered.Transactions.csproj",
1412
"src\\EntityFrameworkCore.Triggered\\EntityFrameworkCore.Triggered.csproj"

EntityFrameworkCore.Triggered.sln

Lines changed: 59 additions & 116 deletions
Large diffs are not rendered by default.

samples/v2/1 - HelloWorld/1 - HelloWorld.csproj renamed to samples/1 - HelloWorld/1 - HelloWorld.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
<RootNamespace>HelloWorld</RootNamespace>
77
<Nullable>disable</Nullable>
88
</PropertyGroup>
File renamed without changes.

samples/v1/1 - HelloWorld/Triggers/StudentAssignRegistrationDate.cs renamed to samples/1 - HelloWorld/Triggers/StudentAssignRegistrationDate.cs

File renamed without changes.

samples/v2/2 - PrimarySchool/2 - PrimarySchool.csproj renamed to samples/2 - PrimarySchool/2 - PrimarySchool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net6.0</TargetFramework>
66
<RootNamespace>PrimarySchool</RootNamespace>
77
<Nullable>disable</Nullable>
88
</PropertyGroup>
File renamed without changes.

0 commit comments

Comments
 (0)