-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPB-WebDAV.csproj
More file actions
54 lines (45 loc) · 1.89 KB
/
Copy pathPB-WebDAV.csproj
File metadata and controls
54 lines (45 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<AssemblyName>PBWebDAV</AssemblyName>
<RootNamespace>PBWebDAV</RootNamespace>
<Platforms>AnyCPU;x86;x64</Platforms>
<!-- Modern C# on classic .NET Framework -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>false</ImplicitUsings>
<Deterministic>true</Deterministic>
<Optimize Condition="'$(Configuration)' == 'Release'">true</Optimize>
<!-- COM interop: suppress auto-generated AssemblyInfo so we own it -->
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<!--
COM registration note:
32-bit PB 2019 R3 → register with:
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe PBWebDAV.dll /tlb /codebase
64-bit host → register with:
%WINDIR%\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe PBWebDAV.dll /tlb /codebase
Strong-naming is recommended when /codebase is not used.
-->
</PropertyGroup>
<ItemGroup>
<!-- Memory-efficient pipeline I/O — works on net48 via netstandard2.0 TFM -->
<PackageReference Include="System.IO.Pipelines" Version="10.0.9" />
<!-- Span<T> / Memory<T> / SequenceReader<T> back-ports -->
<PackageReference Include="System.Memory" Version="4.6.3" />
<!-- ArrayPool<T> -->
<PackageReference Include="System.Buffers" Version="4.6.1" />
</ItemGroup>
<!-- net48 ships System.Net.Http in-box but SDK-style projects need an explicit reference -->
<ItemGroup>
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Compile Remove="PBWebDAV.Tests\**\*" />
<Compile Remove="PB Sample 2019R3+\**\*" />
</ItemGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>PBWebDAV.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>