|
5 | 5 | <LanguageVersion>12</LanguageVersion> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 7 | <Nullable>enable</Nullable> |
| 8 | + <NeutralLanguage>en</NeutralLanguage> |
| 9 | + <EnableNETAnalyzers>true</EnableNETAnalyzers> |
| 10 | +<!-- <AnalysisMode>AllEnabledByDefault</AnalysisMode>--> |
| 11 | + <TreatWarningsAsErrors>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 | + <PackageVersion>0.1.0</PackageVersion> |
| 25 | + <PackageIcon>icon.png</PackageIcon> |
| 26 | + <PackageReleaseNotes>https://github.com/PhenX/PhenX.EntityFrameworkCore.BulkInsert/releases</PackageReleaseNotes> |
8 | 27 | </PropertyGroup> |
9 | 28 |
|
10 | 29 | <ItemGroup> |
| 30 | + <None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\" /> |
| 31 | + <None Include="$(MSBuildThisFileDirectory)..\images\icon.png" Pack="true" PackagePath="\" /> |
| 32 | + </ItemGroup> |
| 33 | + |
| 34 | + <PropertyGroup Label="Build"> |
| 35 | +<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile>--> |
| 36 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 37 | + </PropertyGroup> |
| 38 | + |
| 39 | + <PropertyGroup Label="Source Link"> |
| 40 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 41 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 42 | + <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 46 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 47 | + </PropertyGroup> |
| 48 | + |
| 49 | + <ItemGroup Label="Package References"> |
| 50 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> |
11 | 51 | <PackageReference Include="JetBrains.Annotations" Version="2024.3.0" /> |
12 | 52 | </ItemGroup> |
13 | 53 |
|
|
0 commit comments