-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
52 lines (46 loc) · 2.2 KB
/
Copy pathDirectory.Build.props
File metadata and controls
52 lines (46 loc) · 2.2 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnableMSTestAnalyzers>true</EnableMSTestAnalyzers>
<NoWarn>CS1591</NoWarn>
<ImplicitUsings>enable</ImplicitUsings>
<InterceptorsNamespaces>$(InterceptorsNamespaces);ExpressiveSharp.Generated.Interceptors</InterceptorsNamespaces>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' == 'false'">
<!-- SQLitePCLRaw.lib.e_sqlite3 (transitive via Microsoft.EntityFrameworkCore.Sqlite)
bundles SQLite < 3.50.2 — CVE-2025-6965.
No patched SQLitePCLRaw package exists yet, so a version pin cannot fix it.
Suppress this single advisory in non-packable projects; all other NuGet auditing stays active. -->
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-2m69-gcr7-jv3q" />
</ItemGroup>
<PropertyGroup>
<Authors>Koen</Authors>
<Copyright>Copyright (c) Koen 2025</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/EFNext/ExpressiveSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/EFNext/ExpressiveSharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>Source generator that polyfills modern C# syntax into expression trees</Description>
<PackageTags>expression-trees;source-generator;roslyn;linq;efcore;csharp</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<!-- SourceLink & reproducible builds -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)assets/icon-128.png" Pack="true" PackagePath="icon.png" />
</ItemGroup>
</Project>