-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathDirectory.Build.props
37 lines (37 loc) · 1.63 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="latest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<!-- Global usings -->
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Linq" />
<Using Include="System.Reactive" /> <!-- Mainly for Unit type -->
<Using Include="System.Text" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.Threading.Channels" />
<Using Include="Stl" />
<Using Include="Stl.Async" />
<Using Include="Stl.Channels" />
<Using Include="Stl.Collections" />
<Using Include="Stl.CommandR" />
<Using Include="Stl.CommandR.Configuration" />
<Using Include="Stl.CommandR.Commands" />
<Using Include="Stl.Fusion" />
<Using Include="Stl.Fusion.Authentication" />
<Using Include="Stl.Fusion.Operations" />
<Using Include="Stl.Reflection" />
<Using Include="Stl.Serialization" />
<Using Include="Stl.Text" />
<Using Include="Stl.Time" />
<Using Include="Microsoft.AspNetCore.Builder" />
<Using Include="Microsoft.AspNetCore.Hosting" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Microsoft.Extensions.Hosting" />
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="Microsoft.Extensions.Logging.Abstractions" />
</ItemGroup>
</Project>