-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
22 lines (21 loc) · 1.01 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
<Project>
<PropertyGroup>
<AssemblyNamePrefix>AttributeModel</AssemblyNamePrefix>
<PackageId>$(AssemblyName)</PackageId>
<Version Condition="$(Version) == ''">0.2.2</Version>
<VersionSuffix Condition="$(VersionSuffix) == ''">0001</VersionSuffix>
<Authors>Kevin Cheng</Authors>
<Company>Freelance</Company>
<PackageDescription>dotnet di register by attribute plugin</PackageDescription>
<RepositoryUrl>https://github.com/dcvsling/Extensions.DependencyInjection.AttributeModel</RepositoryUrl>
<PackageProjectUrl>https://github.com/dcvsling/Extensions.DependencyInjection.AttributeModel</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition="$(IsPackable) != 'false'">
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup Condition="$(IsPackable) != 'false'">
<None Include="$(SolutionDir)README.md" Pack="true" PackagePath="" />
<None Include="$(SolutionDir)LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>