-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFluentAssertions.DataSets.csproj
More file actions
61 lines (53 loc) · 3.11 KB
/
FluentAssertions.DataSets.csproj
File metadata and controls
61 lines (53 loc) · 3.11 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
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<!-- To reduce build times, we only enable analyzers for the newest TFM -->
<PropertyGroup>
<TargetFrameworks>net47;net6.0</TargetFrameworks>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>FluentAssertions.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1591;1573</NoWarn>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup Label="Package info">
<Authors>Dennis Doomen;Jonathan Gilbert</Authors>
<PackageDescription>
Extensions to Fluent Assertions 8+ for dealing with DataSets and DataTables.
</PackageDescription>
<PackageProjectUrl>https://www.fluentassertions.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/fluentassertions/fluentassertions.datasets</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>FluentAssertions.png</PackageIcon>
<PackageReleaseNotes>https://github.com/fluentassertions/fluentassertions.datasets/releases</PackageReleaseNotes>
<Copyright>Copyright 2024-$([System.DateTime]::Now.ToString(yyyy)) Xceed Software Inc., all rights reserved</Copyright>
</PropertyGroup>
<ItemGroup Label="Internals visible to">
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>FluentAssertions.DataSets.Specs, PublicKey=00240000048000009400000006020000002400005253413100040000010001002d25ff515c85b13ba08f61d466cff5d80a7f28ba197bbf8796085213e7a3406f970d2a4874932fed35db546e89af2da88c194bf1b7f7ac70de7988c78406f7629c547283061282a825616eb7eb48a9514a7570942936020a9bb37dca9ff60b778309900851575614491c6d25018fadb75828f4c7a17bf2d7dc86e7b6eafc5d8f</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup Label="Package files">
<None Include="..\FluentAssertions.png" Pack="true" Visible="false" PackagePath="" />
<None Include="..\..\readme.md" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup Label="Analyzers">
<AdditionalFiles Include="BannedSymbols.txt" />
<PackageReference Include="FluentAssertions" Version="8.0.0" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="PolySharp" Version="1.15.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="InitializeDataSetSupport.cs" >
<Pack>true</Pack>
<PackagePath>contentFiles\any\any\</PackagePath>
</None>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net47'">
<Reference Include="System.Data" />
</ItemGroup>
</Project>