-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (25 loc) · 1.54 KB
/
Directory.Build.props
File metadata and controls
30 lines (25 loc) · 1.54 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
<Project>
<PropertyGroup>
<BaseOutputPath>$(MSBuildThisFileDirectory)Builds\</BaseOutputPath>
<BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<CustomSuffix>-$(TargetFramework)$(RuntimeIdentifier)</CustomSuffix>
<CustomSuffix Condition="'$(CustomSuffix)'=='-'"></CustomSuffix>
<OutputPath>$(BaseOutputPath)$(Configuration)$(CustomSuffix)\</OutputPath>
<PublishDir>$(BaseOutputPath)$(Configuration)$(CustomSuffix)-publish\</PublishDir>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)$(CustomSuffix)\</IntermediateOutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<LangVersion>latest</LangVersion>
<!-- We have to target old frameworks for compatibility, as this project is a library -->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/RT-Projects/RT.Util</PackageProjectUrl>
<RepositoryUrl>https://github.com/RT-Projects/RT.Util.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/14182444?v=3&s=200</PackageIconUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSymbols>true</IncludeSymbols>
<EmbedAllSources>true</EmbedAllSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
</Project>