-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (22 loc) · 966 Bytes
/
Directory.Build.props
File metadata and controls
24 lines (22 loc) · 966 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
<Project>
<Import Project="build\Version.props" />
<PropertyGroup>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</PackageOutputPath>
<Authors>dotnet-campus</Authors>
<Company>dotnet-campus</Company>
<LangVersion>latest</LangVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>source;dotnet;nuget;msbuild</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/dotnet-campus/CUnit</PackageProjectUrl>
<Copyright>Copyright (c) 2019-2022 dotnet职业技术学院</Copyright>
<RepositoryUrl>https://github.com/dotnet-campus/CUnit</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>