-
Notifications
You must be signed in to change notification settings - Fork 485
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
71 lines (61 loc) · 3.45 KB
/
Copy pathDirectory.Build.props
File metadata and controls
71 lines (61 loc) · 3.45 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
60
61
62
63
64
65
66
67
68
69
70
71
<Project>
<PropertyGroup>
<!-- Minimum .NET Framework Version supported by the published libraries (Core, McpServer, Charts, DataGrid adapters) -->
<NetVersion>net8.0</NetVersion>
<!-- .NET Framework Version used with the Demo, Samples and Unit Tests projects -->
<!-- These projects use APIs that require net9.0+, so they cannot target net8.0 -->
<!--
NOTES: When updating the ExampleNetVersion below, also update the files
- _PublishDemoLocally.ps1
- .github\workflows\build-core-lib.yml
- examples\Tools\FluentUI.Demo.DocApiGen\Properties\launchSettings.json
- examples\Tools\FluentUI.Demo.DocApiGen.IntegrationTests\FluentUIComponentsIntegrationTests.cs
- tests\Integration\WebServer\StartServerFixture.cs
-->
<ExampleNetVersion>net10.0</ExampleNetVersion>
<!-- .NET Framework Version used with the Assets (Icons and Emojis) projects -->
<AssetsNetVersion>net8.0</AssetsNetVersion>
<!-- Target .NET versions for multi-targeting -->
<!-- Used with the published libraries: Core; McpServer; Charts; DataGrid adapters -->
<!-- Debug: minimum version for faster builds; Release: full multi-targeting -->
<TargetNetVersions Condition="'$(Configuration)' == 'Release'">net8.0;net9.0;net10.0;net11.0</TargetNetVersions>
<TargetNetVersions Condition="'$(Configuration)' != 'Release'">$(NetVersion)</TargetNetVersions>
<!-- NU5104: A stable release of a package should not have a prerelease dependency -->
<NoWarn>$(NoWarn);NU5104</NoWarn>
<!-- .NET 11 Preview 7 reports BL0016 across the existing JS interop architecture. -->
<NoWarn Condition="'$(TargetFramework)' == 'net11.0' Or '$(ExampleNetVersion)' == 'net11.0'">$(NoWarn);BL0016</NoWarn>
<!-- Versioning -->
<VersionFile>5.0.0</VersionFile>
<VersionPrefix>5.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Microsoft</Authors>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<Owners>Microsoft Corporation</Owners>
<PackageProjectUrl>https://github.com/microsoft/fluentui-blazor</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/microsoft/fluentui-blazor</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<License>MIT</License>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<AssemblyVersion>$(VersionFile)</AssemblyVersion>
<FileVersion>$(VersionFile)</FileVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Microsoft.FluentUI.AspNetCore.Components.Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Microsoft.FluentUI.AspNetCore.Components.Charts.Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>FluentUI.Demo.DocViewer.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>