-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathMajorsilence.Reporting.DataProviders.csproj
More file actions
38 lines (38 loc) · 1.5 KB
/
Copy pathMajorsilence.Reporting.DataProviders.csproj
File metadata and controls
38 lines (38 loc) · 1.5 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<DelaySign>false</DelaySign>
<OutputType>Library</OutputType>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyTitle>RDL Data Providers</AssemblyTitle>
<DelaySign>false</DelaySign>
<PackageId>Majorsilence.Reporting.DataProviders</PackageId>
<Configurations>Debug;Release;Debug-DrawingCompat;Release-DrawingCompat</Configurations>
<TargetFrameworks>net48;net8.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Unix'">net8.0;net10.0</TargetFrameworks>
<WarningsAsErrors>4014</WarningsAsErrors>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug-DrawingCompat' Or '$(Configuration)' == 'Release-DrawingCompat'">
<PackageId>Majorsilence.Reporting.DataProviders.SkiaSharp</PackageId>
</PropertyGroup>
<ItemGroup>
<Reference Update="System">
<Name>System</Name>
</Reference>
<Reference Update="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Update="System.Xml">
<Name>System.XML</Name>
</Reference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<Reference Include="System.Net.Http" />
<Reference Include="System.Web.Services" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<PackageReference Include="System.Text.Json" />
</ItemGroup>
</Project>