Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/7.0-rc1] Update ComponentResources versions and list #74365

Merged
merged 1 commit into from
Aug 22, 2022
Merged
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
52 changes: 35 additions & 17 deletions src/workloads/workloads.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,38 +37,56 @@

<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />

<ItemDefinitionGroup>
<!-- Visual Studio components must be versioned. Build tasks will fall back to cobbling a version number from
the manifest information unless it's overridden. -->
<ComponentResources Version="$(FileVersion)" />
</ItemDefinitionGroup>

<Target Name="Build" DependsOnTargets="GetAssemblyVersion;_GetVersionProps;_GenerateMsiVersionString">
<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"
<_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"
<_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"
<_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)"
<_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="microsoft-net-runtime-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="microsoft-net-runtime-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="microsoft-net-runtime-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"
<_ComponentResources Include="runtimes-ios" Title=".NET iOS Runtimes"
Description=".NET runtime components for iOS execution."/>
<ComponentResources Include="runtimes-tvos" Title=".NET tvOS Build Tools"
<_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"
<_ComponentResources Include="runtimes-maccatalyst" Title=".NET Mac Catalyst Build Tools"
Description=".NET runtime components for Mac Catalyst execution."/>
<ComponentResources Include="runtimes-windows" Title=".NET Windows Runtimes"
<_ComponentResources Include="runtimes-windows" Title=".NET Windows Runtimes"
Description=".NET runtime components for Windows execution."/>
<_ComponentResources Include="microsoft-net-runtime-mono-tooling-net6" Title=".NET 6.0 Shared Mobile Build Tools"
Description="Shared build tasks for mobile platform development."/>
<_ComponentResources Include="wasm-tools-net6" Title=".NET 6.0 WebAssembly Build Tools"
Description="Build tools for net6.0 WebAssembly ahead-of-time (AoT) compilation and native linking."/>
<_ComponentResources Include="microsoft-net-runtime-android-net6" Title=".NET 6.0 Android Build Tools"
Description="Build tools for net6.0 Android compilation and native linking."/>
<_ComponentResources Include="microsoft-net-runtime-android-aot-net6" Title=".NET 6.0 Android Build Tools (AoT)"
Description="Build tools for net6.0 Android ahead-of-time (AoT) compilation and native linking."/>
<_ComponentResources Include="microsoft-net-runtime-ios-net6" Title=".NET 6.0 iOS Build Tools"
Description="Build tools for net6.0 iOS compilation and native linking."/>
<_ComponentResources Include="microsoft-net-runtime-tvos-net" Title=".NET 6.0 tvOS Build Tools"
Description="Build tools for net6.0 tvOS compilation and native linking."/>
<_ComponentResources Include="microsoft-net-runtime-maccatalyst-net6" Title=".NET 6.0 Mac Catalyst Build Tools"
Description="Build tools for net6.0 Mac Catalyst compilation and native linking."/>
<_ComponentResources Include="runtimes-ios-net6" Title=".NET 6.0 iOS Runtimes"
Description=".NET 6.0 runtime components for iOS execution."/>
<_ComponentResources Include="runtimes-tvos-net6" Title=".NET 6.0 tvOS Build Tools"
Description=".NET 6.0 runtime components for tvOS execution."/>
<_ComponentResources Include="runtimes-maccatalyst-net6" Title=".NET 6.0 Mac Catalyst Build Tools"
Description=".NET 6.0 runtime components for Mac Catalyst execution."/>
<_ComponentResources Include="runtimes-windows-net6" Title=".NET 6.0 Windows Runtimes"
Description=".NET 6.0 runtime components for Windows execution."/>

<ComponentResources Include="@(_ComponentResources)" Version="$(FileVersion)"/>
</ItemGroup>

<!-- BAR requires having version information in blobs -->
Expand Down