|
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Based on https://github.com/terrafx/terrafx/blob/master/Directory.Build.props -->
- <!-- Copyright © Tanner Gooding and Contributors -->
- <Project>
-
- <!--
- Directory.Build.targets is automatically picked up and imported by
- Microsoft.Common.targets. This file needs to exist, even if empty so that
- files in the parent directory tree, with the same name, are not imported
- instead. The import fairly late and most other props/targets will have
- been imported beforehand. We also don't need to add ourselves to
- MSBuildAllProjects, as that is done by the file that imports us.
- -->
-
- <PropertyGroup>
- <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileDirectory)..\Directory.Build.targets</MSBuildAllProjects>
- </PropertyGroup>
-
- <Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.targets" />
-
- <!-- Empty target so that `dotnet test` will work on the solution -->
- <!-- https://github.com/Microsoft/vstest/issues/411 -->
- <Target Name="VSTest" />
-
- </Project>
|