Skip to content

Commit

Permalink
Revise descriptions of VS workloads, and add missing ones (dotnet#59698)
Browse files Browse the repository at this point in the history
Revise descriptions of VS workloads, and add missing ones
  • Loading branch information
directhex authored Sep 29, 2021
1 parent 72d643d commit aa7a125
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/workloads/workloads.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,36 @@
<ItemGroup>
<!-- Overrides for Visual Studio setup generation. If the workload definition IDs change,
these must be updated. -->
<ComponentResources Include="microsoft-net-runtime-mono-tooling" Title=".NET Shared Mobile Build Tools"
Description="Shared build tasks for mobile platform development."/>
<ComponentResources Include="wasm-tools" Title=".NET WebAssembly Build Tools"
Description="Build tools for WebAssembly ahead-of-time (AoT) compilation and native linking."/>
<ComponentResources Include="microsoft-net-runtime-android" Title=".NET Android Build Tools"
Description="Build tools for Android compilation and native linking."/>
<ComponentResources Include="microsoft-net-runtime-android-aot" Title=".NET Android Build Tools (AoT)"
Description="Build tools for Android ahead-of-time (AoT) compilation and native linking."/>
<ComponentResources Include="runtimes-ios" Title=".NET iOS Build Tools"
<ComponentResources Include="microsoft-net-runtime-ios" Title=".NET iOS Build Tools"
Description="Build tools for iOS compilation and native linking."/>
<ComponentResources Include="runtimes-tvos" Title=".NET tvOS Build Tools"
<ComponentResources Include="microsoft-net-runtime-tvos" Title=".NET tvOS Build Tools"
Description="Build tools for tvOS compilation and native linking."/>
<ComponentResources Include="runtimes-maccatalyst" Title=".NET Mac Catalyst Build Tools"
<ComponentResources Include="microsoft-net-runtime-maccatalyst" Title=".NET Mac Catalyst Build Tools"
Description="Build tools for Mac Catalyst compilation and native linking."/>
<ComponentResources Include="runtimes-ios" Title=".NET iOS Runtimes"
Description=".NET runtime components for iOS execution."/>
<ComponentResources Include="runtimes-tvos" Title=".NET tvOS Build Tools"
Description=".NET runtime components for tvOS execution."/>
<ComponentResources Include="runtimes-maccatalyst" Title=".NET Mac Catalyst Build Tools"
Description=".NET runtime components for Mac Catalyst execution."/>

<!-- Visual Studio components must be versioned. Build tasks will fall back to cobbling a version number from
the manifest information unless it's overridden. -->
<ComponentVersions Include="microsoft-net-runtime-mono-tooling" Version="$(FileVersion)" />
<ComponentVersions Include="wasm-tools" Version="$(FileVersion)" />
<ComponentVersions Include="microsoft-net-runtime-android" Version="$(FileVersion)" />
<ComponentVersions Include="microsoft-net-runtime-android-aot" Version="$(FileVersion)" />
<ComponentVersions Include="microsoft-net-runtime-ios" Version="$(FileVersion)" />
<ComponentVersions Include="microsoft-net-runtime-tvos" Version="$(FileVersion)" />
<ComponentVersions Include="microsoft-net-runtime-maccatalyst" Version="$(FileVersion)" />
<ComponentVersions Include="runtimes-ios" Version="$(FileVersion)" />
<ComponentVersions Include="runtimes-tvos" Version="$(FileVersion)" />
<ComponentVersions Include="runtimes-maccatalyst" Version="$(FileVersion)" />
Expand Down

0 comments on commit aa7a125

Please sign in to comment.