-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (23 loc) · 700 Bytes
/
Directory.Build.props
File metadata and controls
26 lines (23 loc) · 700 Bytes
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
<!--
SPDX-FileCopyrightText: 2023 smdn <[email protected]>
SPDX-License-Identifier: MIT
-->
<Project>
<Import Project="Sdk.props" Sdk="Smdn.MSBuild.ProjectAssets.Library" />
<Import
Condition=" '$(IsTestProject)' == 'true' "
Project="$(MSBuildThisFileDirectory)TargetFrameworks.props"
/>
<ItemGroup Condition=" '$(IsTestProject)' == 'true' ">
<PackageReference Include="NUnit" Version="4.4.0" />
<PackageReference Include="NUnit3TestAdapter" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference
Include="Smdn.MSBuild.DefineConstants.NETSdkApi"
Version="[1.6.2]"
PrivateAssets="all"
IncludeAssets="build"
/>
</ItemGroup>
</Project>