-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathInferNull.csproj
More file actions
37 lines (32 loc) · 1.7 KB
/
InferNull.csproj
File metadata and controls
37 lines (32 loc) · 1.7 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net472</TargetFramework>
<AssemblyName>InferNull</AssemblyName>
<RootNamespace>InferNull</RootNamespace>
<ToolCommandName>infernull</ToolCommandName>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.4.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.9.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="3.9.0" />
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="16.9.60" />
<PackageReference Include="Microsoft.VisualStudio.Composition" Version="16.9.20" />
<PackageReference Include="NuGet.Build.Tasks" Version="5.9.1" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NullabilityInference\NullabilityInference.csproj" />
</ItemGroup>
</Project>