-
Notifications
You must be signed in to change notification settings - Fork 35
/
Directory.Build.props
47 lines (38 loc) · 1.8 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
45
46
47
<Project>
<Import Project="eng\apicompat\PublicApiAnalyzer.props" />
<Import Project="eng\apicompat\PublicApiAnalyzer.targets" />
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<DefaultTargetFramework>net8.0</DefaultTargetFramework>
<TargetFrameworks>$(DefaultTargetFramework)</TargetFrameworks>
<AllTargetFrameworks>$(DefaultTargetFramework);net9.0</AllTargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AspireMajorVersion>9</AspireMajorVersion>
<AspireVersion>$(AspireMajorVersion).0.0</AspireVersion>
<AspireAppHostSdkVersion>$(AspireVersion)</AspireAppHostSdkVersion>
<AspNetCoreVersion>9.0.0</AspNetCoreVersion>
<DotNetExtensionsVersion>9.0.0</DotNetExtensionsVersion>
<OpenTelemetryVersion>1.10.0</OpenTelemetryVersion>
<TestContainersVersion>4.1.0</TestContainersVersion>
<IsPackable>false</IsPackable>
<UsePublicApiAnalyzers>true</UsePublicApiAnalyzers>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<SharedDir>$(RepoRoot)src\Shared</SharedDir>
</PropertyGroup>
<PropertyGroup>
<ContinuousIntegrationBuild>false</ContinuousIntegrationBuild>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<!-- Versioning -->
<PropertyGroup>
<ToolkitMinorVersion>1</ToolkitMinorVersion>
<ToolkitPatchVersion>0</ToolkitPatchVersion>
<VersionPrefix>$(AspireMajorVersion).$(ToolkitMinorVersion).$(ToolkitPatchVersion)</VersionPrefix>
</PropertyGroup>
</Project>