-
Notifications
You must be signed in to change notification settings - Fork 0
/
.root.targets
28 lines (24 loc) · 931 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: ISC
-->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<IsPublishable>false</IsPublishable>
<IsPackable>false</IsPackable>
<DefaultItemExcludesInProjectFolder>
src\**;
test\**;
dist\**;
$(DefaultItemExcludesInProjectFolder)
</DefaultItemExcludesInProjectFolder>
</PropertyGroup>
<ItemGroup>
<None Include="**" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder);$(MSBuildThisFile)" />
<None Include=".*\**" Exclude=".git\**;.vs\**;.nuget\**" />
</ItemGroup>
</Project>