-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (34 loc) · 1.63 KB
/
Directory.Build.props
File metadata and controls
40 lines (34 loc) · 1.63 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
37
38
39
40
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props, $(MSBuildThisFileDirectory)..))" Condition="Exists($([MSBuild]::GetPathOfFileAbove(Directory.Build.props, $(MSBuildThisFileDirectory)..)))"/>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup>
<ComposeUIRepositoryRoot>$(MSBuildThisFileDirectory.TrimEnd('/').TrimEnd('\'))</ComposeUIRepositoryRoot>
<PackageOutputPath>$(ComposeUIRepositoryRoot)/artifacts/packages/nuget</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<VSTestLogger>trx</VSTestLogger>
<VSTestResultsDirectory>$(ComposeUIRepositoryRoot)/artifacts/test-results</VSTestResultsDirectory>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionSuffix>alpha.12</VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<Company>Morgan Stanley</Company>
<Authors>Morgan Stanley</Authors>
<RepositoryUrl>https://github.com/morganstanley/ComposeUI</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworkVersion>net8.0</TargetFrameworkVersion>
<TargetFramework>$(TargetFrameworkVersion)</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(ComposeUIRepositoryRoot)\keyPair.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>