-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
44 lines (32 loc) · 1.32 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project>
<PropertyGroup>
<Version>$(Ver)</Version>
<PackageVersion>$(Ver)</PackageVersion>
<Copyright>2019 Es Inc.</Copyright>
<Authors>EasyWork;[email protected]</Authors>
<Description>Es.Throttle</Description>
<Product>Es.Throttle</Product>
<PackageOutputPath>$(MSBuildThisFileDirectory)/artifacts</PackageOutputPath>
<PackageTags>Es.Throttle</PackageTags>
<LangVersion>latest</LangVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageLicenseType>MIT</PackageLicenseType>
<RepositoryUrl>https://github.com/EsWork/Es.Throttle</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>master</RepositoryBranch>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' != 'Debug' ">
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>True</SignAssembly>
<DelaySign>False</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/build/Es.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/build/icon.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>