-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDirectory.Build.props
31 lines (26 loc) · 1.2 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Configurations>Debug;Release</Configurations>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<Description>Triggers for EF Core. Respond to changes in your ApplicationDbContext before and after they are committed to the database</Description>
<RepositoryType>Git</RepositoryType>
<RepositoryUrl>https://github.com/koenbeuk/EntityFrameworkCore.Triggered</RepositoryUrl>
<Authors>Koen Bekkenutte</Authors>
<PackageTags>EntityFramework;EFCore;Triggers;SQLServer;SqlLite;CosmosDb;.NET Core;aspnetcore</PackageTags>
<PackageProjectUrl>https://github.com/koenbeuk/EntityFrameworkCore.Triggered</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup>
<EFCoreTriggeredVersion>3</EFCoreTriggeredVersion>
<EFCorePackageVersion>6.0.0</EFCorePackageVersion>
<MicrosoftExtensionsVersion>6.0.0</MicrosoftExtensionsVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)\README.md" Pack="true" PackagePath="\"></None>
</ItemGroup>
</Project>