forked from masastack/MASA.Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (24 loc) · 875 Bytes
/
Directory.Build.props
File metadata and controls
24 lines (24 loc) · 875 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>
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<PackageIcon>packageIcon.png</PackageIcon>
<Authors>masastack</Authors>
<Copyright>© masastack Corporation. All rights reserved.</Copyright>
<PackageIconUrl>packageIcon.png</PackageIconUrl>
<RepositoryUrl>https://github.com/masastack/MASA.Contrib</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(RepositoryRoot)packageIcon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="$(RepositoryRoot)LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>