-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDBClientFiles.NET.csproj
More file actions
81 lines (66 loc) · 3.07 KB
/
DBClientFiles.NET.csproj
File metadata and controls
81 lines (66 loc) · 3.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0</TargetFrameworks>
<TrimUnusedDependencies>true</TrimUnusedDependencies>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<Configurations>Debug;Release;DebugUnitTests;ReleaseUnitTests</Configurations>
<LangVersion>11.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TieredCompilation>false</TieredCompilation>
<Version>0.0.1</Version>
<FileVersion>0.0.1</FileVersion>
<Authors>Warpten</Authors>
<Description>High-performance DBC/DB2 file reader.</Description>
<Copyright>Copyright (c) 2018-2022 Warpten</Copyright>
<PackageId>DBClientFiles.NET</PackageId>
<PackageVersion>0.0.1</PackageVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>DBC DB2 WDBC WDB2 WDB3 WDB4 WDB5 WDB6 WDC1 WDC2 WDC3</PackageTags>
<PackageLicenseUrl>https://github.com/Warpten/DBClientFiles.NET/LICENSE.txt</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Warpten/DBClientFiles.NET/</PackageProjectUrl>
</PropertyGroup>
<!-- Strong signing for unit tests -->
<PropertyGroup Condition="'$(Configuration)' == 'DebugUnitTests' Or '$(Configuration)' == 'ReleaseUnitTests'">
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>DBClientFiles.NET.key.pfx</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<!-- Optimize unless debug -->
<Optimize>true</Optimize>
<Optimize Condition="'$(Configuration)' == 'DebugUnitTests'">false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug' Or '$(Configuration)' == 'DebugUnitTests'">
<DefineConstants>DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="obj\**" />
<EmbeddedResource Remove="obj\**" />
<None Remove="obj\**" />
</ItemGroup>
<!-- References -->
<!--<ItemGroup Condition="'$(Configuration)'=='RelWithMemoryProfiling'">
<Reference Include="JetBrains.Profiler.Windows.Api.dll">
<HintPath>$(LocalAppData)\JetBrains\Installations\dotMemory12\JetBrains.Profiler.Windows.Api.dll</HintPath>
</Reference>
</ItemGroup>-->
<ItemGroup>
<<<<<<< HEAD
<Compile Remove="IO\SegmentedMemoryStream.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FastExpressionCompiler" Version="3.3.4" />
<PackageReference Include="FastExpressionCompiler.LightExpression" Version="3.3.4" />
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="2.4.416101" />
=======
<PackageReference Include="InlineIL.Fody" Version="1.7.2" />
>>>>>>> f32cfb9 (Target .NET 7 & C# 11)
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Collections\Internal\" />
<Folder Include="Definitions\" />
</ItemGroup>
</Project>