-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
59 lines (48 loc) · 2.44 KB
/
Copy pathDirectory.Build.props
File metadata and controls
59 lines (48 loc) · 2.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project>
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<DefaultTargetFramework>net10.0</DefaultTargetFramework>
<TargetFrameworks>$(DefaultTargetFramework)</TargetFrameworks>
<AllTargetFrameworks>$(DefaultTargetFramework);net8.0;net9.0</AllTargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AspireMajorVersion>13</AspireMajorVersion>
<AspireVersion>$(AspireMajorVersion).5.0</AspireVersion>
<AspirePreviewSuffix>-preview.1.26417.10</AspirePreviewSuffix> <!-- Used for Aspire packages that still only ship as prerelease packages on nuget.org. -->
<AspNetCoreVersion>9.0.0</AspNetCoreVersion>
<DotNetExtensionsVersion>10.0.11</DotNetExtensionsVersion>
<TestContainersVersion>4.14.0</TestContainersVersion>
<MEAIVersion>10.6.0</MEAIVersion>
<ServiceDiscoveryVersion>10.0.0</ServiceDiscoveryVersion>
<IsPackable>false</IsPackable>
<MoqVersion>4.20.72</MoqVersion>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<SharedDir>$(RepoRoot)src\Shared</SharedDir>
</PropertyGroup>
<PropertyGroup>
<!-- Work around the missing in-proc RID selection task in the current .NET 10 SDKs. -->
<_AspireUseSdkPickBestRid>false</_AspireUseSdkPickBestRid>
</PropertyGroup>
<PropertyGroup>
<ContinuousIntegrationBuild>false</ContinuousIntegrationBuild>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<!-- Versioning -->
<PropertyGroup>
<ToolkitMinorVersion>5</ToolkitMinorVersion>
<ToolkitPatchVersion>1</ToolkitPatchVersion>
<ToolkitPreviewVersion>preview.1</ToolkitPreviewVersion>
<VersionPrefix>$(AspireMajorVersion).$(ToolkitMinorVersion).$(ToolkitPatchVersion)</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-4mjw-xr5x-prpc" />
<!-- SQLitePCLRaw.lib.e_sqlite3 <= 2.1.11 depends on vulnerable SQLite < 3.50.2 (memory corruption).
No patched NuGet version available yet. Suppress until upstream ships a fix. -->
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-2m69-gcr7-jv3q" />
</ItemGroup>
</Project>