Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,17 @@
<!-- Generate NRT annotations -->
<Nullable Condition=" '$(Nullable)' == '' ">enable</Nullable>

<StructuredDataForGenAI Condition=" '$(StructuredDataForGenAI)' == '' ">enable</StructuredDataForGenAI>

<!-- Warnings we want to error on: -->
<!-- NU5104: A stable release of a package should not have a prerelease dependency. -->
<WarningsAsErrors>$(WarningsAsErrors)</WarningsAsErrors>

<!-- Ignore binding generator warnings by default -->
<_AndroidIgnoreGeneratorWarnings>true</_AndroidIgnoreGeneratorWarnings>
</PropertyGroup>

<PropertyGroup Condition=" '$(StructuredDataForGenAI)' != 'enable' ">
<!--
BG8102: Class 'foo' has unknown base type 'foo'.
BG8103: Class 'foo' has invalid base type 'foo'.
Expand Down Expand Up @@ -75,7 +79,13 @@
BG8C01: For type 'IFoo', base interface 'foo' is invalid.
-->
<NoWarn Condition=" '$(_AndroidIgnoreGeneratorWarnings)' == 'true' ">$(NoWarn);BG8102;BG8103;BG8300;BG8400;BG8401;BG8402;BG8403;BG8501;BG8502;BG8503;BG8504;BG8601;BG8604;BG8605;BG8606;BG8700;BG8701;BG8800;BG8801;BG8A00;BG8A01;BG8A04;BG8B00;BG8C00;BG8C01;nullable</NoWarn>
</PropertyGroup>

<PropertyGroup Condition=" '$(StructuredDataForGenAI)' == 'enable' ">
<ErrorLog>./obj/$(Configuration)/$(MSBuildProjectName).sarif.json</ErrorLog>
</PropertyGroup>

<PropertyGroup>
<!-- Common package metadata -->
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
Expand Down
26 changes: 13 additions & 13 deletions docs/buildtoolsinventory.csv
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
BuildToolName,BuildToolVersion
dotnet sdk, 9.0.301
dotnet sdk, 9.0.303
dotnet sdk, latestMajor
dotnet sdk, True
msbuild-sdks Microsoft.Build.Traversal, 4.1.0
msbuild-sdks Microsoft.Build.NoTargets, 3.7.56
Mono JIT compiler, 6.12.0.188 (2020-02/ca8abcb6bc4 Thu Oct 13 14:26:22 EDT 2022)
nuget, 6.3.1.1
api-tools,1.4.1
xamarin.androidbinderator.tool,0.5.7
Gradle, 8.10.2
Kotlin, 1.9.24
Groovy, 3.0.22
Ant, Apache Ant(TM) version 1.10.14 compiled on August 16 2023
JVM, Launcher 11.0.24 (Eclipse Adoptium 11.0.24+8)
JVM, Daemon /Users/runner/hostedtoolcache/Java_Temurin-Hotspot_jdk/11.0.24-8/x64/Contents/Home (no JDK specified, using current Java home)
openjdk, 11.0.24 2024-07-16
javac, 11.0.24
Mono JIT compiler, 6.14.1 (tarball Tue Apr 29 17:43:02 UTC 2025)
NuGet package manager, Not installed
api-tools,1.4.2-preview.2
Gradle, 9.2.1
Kotlin, 2.2.20
Groovy, 4.0.28
Ant, Apache Ant(TM) version 1.10.15 compiled on August 25 2024
JVM, Launcher 21.0.9 (Microsoft 21.0.9+10-LTS)
JVM, Daemon /Library/Java/JavaVirtualMachines/microsoft-21.jdk/Contents/Home (no JDK specified, using current Java home)
openjdk, 21.0.9 2025-10-21 LTS
javac, 21.0.9
5 changes: 3 additions & 2 deletions docs/buildtoolsinventory.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```
{
"sdk": {
"version": "9.0.301",
"version": "9.0.303",
"rollForward": "latestMajor",
"allowPrerelease": true
},
Expand All @@ -15,5 +15,6 @@
}
}
```
version9.0.301
version9.0.303
rollForwardlatestMajor
allowPrereleaseTrue
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"sdk": {
"version": "9.0.303",
"rollForward": "latestMajor",
"allowPrerelease": true
},
"msbuild-sdks": {
"Microsoft.Build.Traversal": "4.1.0",
"Microsoft.Build.NoTargets": "3.7.56"
Expand Down
Loading