Skip to content

Commit 8599fdd

Browse files
author
fabien.menager
committed
Add package nuget package information
1 parent 4c3ab47 commit 8599fdd

3 files changed

Lines changed: 42 additions & 1 deletion

File tree

.idea/.idea.PhenX.EntityFrameworkCore.BulkInsert/.idea/indexLayout.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

images/icon.png

565 KB
Loading

src/Directory.Build.props

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,49 @@
55
<LanguageVersion>12</LanguageVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<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>
827
</PropertyGroup>
928

1029
<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"/>
1151
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
1252
</ItemGroup>
1353

0 commit comments

Comments
 (0)