forked from dotnet/runtime-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
23 lines (20 loc) · 1.1 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeBuildOutput>false</IncludeBuildOutput>
<IsPackable>true</IsPackable>
<ContentTargetFolders>content</ContentTargetFolders>
<Title>Test data for $(MSBuildProjectName.Replace('.TestData', '')) tests</Title>
<Description>This package provides test data that is used during the execution of the $(MSBuildProjectName.Replace('.TestData', '')) tests.</Description>
<Authors>Microsoft</Authors>
<Copyright>Copyright © Microsoft Corporation</Copyright>
<PackageLicenseUrl>http://go.microsoft.com/fwlink/?LinkId=329770</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</PackageIconUrl>
<RepositoryUrl>http://go.microsoft.com/fwlink/?LinkId=529047</RepositoryUrl>
<PackageTags>$(MSBuildProjectName) TestData</PackageTags>
</PropertyGroup>
<ItemGroup>
<Content Include="**\*" Exclude="$(MSBuildProjectName)$(MSBuildProjectExtension);obj\**\*;bin\**\*" />
</ItemGroup>
</Project>