-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (33 loc) · 1.08 KB
/
Directory.Build.props
File metadata and controls
36 lines (33 loc) · 1.08 KB
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
<Project DefaultTargets="Build">
<PropertyGroup>
<LangVersion>Latest</LangVersion>
<BaseOutputPath>bin\</BaseOutputPath>
<NoDefaultLaunchSettingsFile>True</NoDefaultLaunchSettingsFile>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<!--Version-->
<PropertyGroup>
<Version>4.0.1</Version>
<Authors>Lee</Authors>
<Company>SD</Company>
<Copyright>Copyright © SD $([System.DateTime]::Now.ToString(yyyy))</Copyright>
</PropertyGroup>
<!--NuGet-->
<PropertyGroup>
<PackageIcon>Icon.png</PackageIcon>
<PackageOutputPath>$(SolutionDir)\packages</PackageOutputPath>
<GeneratePackageOnBuild Condition="'$(Configuration)'=='Release'">True</GeneratePackageOnBuild>
</PropertyGroup>
<!--NuGet-->
<ItemGroup>
<None Include="$(SolutionDir)\assets\favicon.png">
<Pack>True</Pack>
<PackagePath>Icon.png</PackagePath>
<Visible>False</Visible>
</None>
<None Include="*.config.transform">
<Pack>True</Pack>
<PackagePath>content\</PackagePath>
</None>
</ItemGroup>
</Project>