You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- TODO once all project migrated to SDK-style, remove this and move properties to Directory.Build.props -->
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
<!-- To be removed when NRT annotations are complete -->
|
|
<Nullable>annotations</Nullable>
|
|
|
|
<!-- Exclude this project from the list of tests project -->
|
|
<TestProject>false</TestProject>
|
|
<IsTestProject>false</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LibGit2Sharp" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" />
|
|
<PackageReference Include="NUnit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\app\GitCommands\GitCommands.csproj" />
|
|
<ProjectReference Include="..\..\src\app\GitExtUtils\GitExtUtils.csproj" />
|
|
<ProjectReference Include="..\..\src\plugins\GitUIPluginInterfaces\GitUIPluginInterfaces.csproj" />
|
|
<PackageReference Include="JetBrains.Annotations" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- This project takes depedency on nUnit that adds the TestContainer capability importing NUnit.props, but this is not a test project -->
|
|
<ProjectCapability Remove="TestContainer" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|