|
1 | 1 | <Project> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net9.0</TargetFrameworks> |
5 | | - <LanguageVersion>12</LanguageVersion> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Nullable>enable</Nullable> |
8 | | - <NeutralLanguage>en</NeutralLanguage> |
9 | | - <EnableNETAnalyzers>true</EnableNETAnalyzers> |
10 | | -<!-- <AnalysisMode>AllEnabledByDefault</AnalysisMode>--> |
11 | | - <TreatWarningsAsErrors Condition="$(Configuration) != 'Debug'">true</TreatWarningsAsErrors> |
12 | | - </PropertyGroup> |
13 | | - |
14 | | - <PropertyGroup> |
15 | | - <Authors>Fabien Ménager</Authors> |
16 | | - <Description>Super fast bulk insertion for Entity Framework Core on SQL Server, PostgreSQL and SQLite</Description> |
17 | | - <Copyright>Fabien Ménager © 2025</Copyright> |
18 | | - <PackageProjectUrl>https://github.com/PhenX/PhenX.EntityFrameworkCore.BulkInsert</PackageProjectUrl> |
19 | | - <RepositoryUrl>https://github.com/PhenX/PhenX.EntityFrameworkCore.BulkInsert</RepositoryUrl> |
20 | | - <RepositoryType>git</RepositoryType> |
21 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
22 | | - <PackageTags>sql sqlite postgresql entity-framework sqlbulkcopy efcore entity-framework-core sqlserver bulk-insert</PackageTags> |
23 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
24 | | - <PackageIcon>icon.png</PackageIcon> |
25 | | - <PackageReleaseNotes>https://github.com/PhenX/PhenX.EntityFrameworkCore.BulkInsert/releases</PackageReleaseNotes> |
26 | | - </PropertyGroup> |
| 3 | + <!-- Import parents Directory.Build.props files --> |
| 4 | + <Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.props" Condition="Exists('$(MSBuildThisFileDirectory)..\Directory.Build.props')" /> |
27 | 5 |
|
28 | 6 | <ItemGroup> |
29 | 7 | <None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\" /> |
|
47 | 25 |
|
48 | 26 | <ItemGroup Label="Package References"> |
49 | 27 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> |
50 | | - <PackageReference Include="JetBrains.Annotations" Version="2025.2.2" /> |
| 28 | + <PackageReference Include="JetBrains.Annotations" Version="2025.2.4" /> |
51 | 29 | </ItemGroup> |
52 | 30 |
|
53 | 31 | </Project> |
0 commit comments