-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.targets
45 lines (44 loc) · 2.04 KB
/
Directory.Build.targets
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
<Project>
<ItemGroup>
<Using Include="System.Buffers" />
<Using Include="System.Buffers.Binary" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Collections.Frozen" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.ComponentModel.DataAnnotations" />
<Using Include="System.Diagnostics" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Globalization" />
<Using Include="System.IO.Compression" />
<Using Include="System.Linq.Expressions" />
<Using Include="System.Net" />
<Using Include="System.Net.Http.Headers" />
<Using Include="System.Net.Http.Json" />
<Using Include="System.Net.Mime" />
<Using Include="System.Net.Quic" />
<Using Include="System.Net.Security" />
<Using Include="System.Net.Sockets" />
<Using Include="System.Numerics" />
<Using Include="System.Reflection" />
<Using Include="System.Runtime.CompilerServices" />
<Using Include="System.Runtime.ExceptionServices" />
<Using Include="System.Runtime.InteropServices" />
<Using Include="System.Runtime.Loader" />
<Using Include="System.Security.Authentication" />
<Using Include="System.Security.Claims" />
<Using Include="System.Security.Cryptography" />
<Using Include="System.Security.Cryptography.X509Certificates" />
<Using Include="System.Text" />
<Using Include="System.Text.Encodings.Web" />
<Using Include="System.Text.Json" />
<Using Include="System.Text.Json.Serialization" />
<Using Include="System.Text.Json.Serialization.Metadata" />
<Using Include="System.Threading.Channels" />
<Using Include="System.Xml" />
<Using Include="System.Xml.Linq" />
<Using Include="System.Xml.Schema" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory).stylecop.json" />
</ItemGroup>
</Project>