-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.root.targets
28 lines (24 loc) · 932 Bytes
/
.root.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
<Project Sdk="Microsoft.Build.NoTargets/3.7.56">
<!-- https://github.com/microsoft/MSBuildSdks/tree/main/src/NoTargets -->
<!--
Copyright Subatomix Research Inc.
SPDX-License-Identifier: MIT
-->
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<IsPublishable>false</IsPublishable>
<IsPackable>false</IsPackable>
<DefaultItemExcludesInProjectFolder>
PSql*\**;
coverage\**;
dist\**;
$(DefaultItemExcludesInProjectFolder)
</DefaultItemExcludesInProjectFolder>
</PropertyGroup>
<ItemGroup>
<None Include="**" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder);$(MSBuildThisFile)" />
<None Include=".*\**" Exclude=".git\**;.vs\**" />
</ItemGroup>
</Project>