From d3fea143d077aadad5d4f0a7b02ca1c5a46ff271 Mon Sep 17 00:00:00 2001 From: Felipe da Conceicao Guimaraes Date: Wed, 22 Jan 2025 10:51:26 -0800 Subject: [PATCH 1/4] Adding shell info bar --- src/Strings/en-us/Resources.resw | 3 +++ src/Views/ShellPage.xaml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/Strings/en-us/Resources.resw b/src/Strings/en-us/Resources.resw index d2d5a36b8..88799a12e 100644 --- a/src/Strings/en-us/Resources.resw +++ b/src/Strings/en-us/Resources.resw @@ -292,4 +292,7 @@ Check with your IT or System Administrator for support. + + Dev Home will be going away in May 2025 and a subset of its features will be moved to new places. Stay tuned for more information in the following months. + \ No newline at end of file diff --git a/src/Views/ShellPage.xaml b/src/Views/ShellPage.xaml index d52fe5769..4c29c28b6 100644 --- a/src/Views/ShellPage.xaml +++ b/src/Views/ShellPage.xaml @@ -120,6 +120,8 @@ + + Date: Mon, 27 Jan 2025 11:06:54 -0800 Subject: [PATCH 2/4] Disabling warning --- .../src/DevSetupEngine/ConfigurationFileHelper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/HyperVExtension/src/DevSetupEngine/ConfigurationFileHelper.cs b/extensions/HyperVExtension/src/DevSetupEngine/ConfigurationFileHelper.cs index 244a60ec5..94f4f90e7 100644 --- a/extensions/HyperVExtension/src/DevSetupEngine/ConfigurationFileHelper.cs +++ b/extensions/HyperVExtension/src/DevSetupEngine/ConfigurationFileHelper.cs @@ -293,6 +293,7 @@ private async Task InstallOrUpdateAppInstallerIfNeeded(IProgress ApplyConfigurationAsync(string content, IProgress progress) { DevSetupEngineTypes.IOpenConfigurationSetResult? openConfigurationSetResult = default; From 0c3a0a13b72cfd1054c7f9af3c1b93141dec7f89 Mon Sep 17 00:00:00 2001 From: Felipe da Conceicao Guimaraes Date: Mon, 27 Jan 2025 11:18:13 -0800 Subject: [PATCH 3/4] Disabling warning --- .../Services/DSCOperations.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/services/DevHome.Services.DesiredStateConfiguration/Services/DSCOperations.cs b/services/DevHome.Services.DesiredStateConfiguration/Services/DSCOperations.cs index 4318cfb25..fef613f69 100644 --- a/services/DevHome.Services.DesiredStateConfiguration/Services/DSCOperations.cs +++ b/services/DevHome.Services.DesiredStateConfiguration/Services/DSCOperations.cs @@ -87,6 +87,7 @@ public async Task ValidateConfigurationAsync(IDSCFile file) /// /// Result of applying the configuration set /// Activity ID + #pragma warning disable CA1859 private void ReportApplyConfigurationResult(IDSCApplicationResult result, Guid activityId) { foreach (var unitResult in result.UnitResults) From 98e49df0b47e876f064d36e49e3c56baaa0b2f98 Mon Sep 17 00:00:00 2001 From: Felipe da Conceicao Guimaraes Date: Mon, 27 Jan 2025 11:36:32 -0800 Subject: [PATCH 4/4] Disabling warnings --- .../DevHome.Dashboard/ViewModels/DashboardBannerViewModel.cs | 1 + tools/Dashboard/DevHome.Dashboard/Views/DashboardView.xaml.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/Dashboard/DevHome.Dashboard/ViewModels/DashboardBannerViewModel.cs b/tools/Dashboard/DevHome.Dashboard/ViewModels/DashboardBannerViewModel.cs index f806aa398..82b9b7f55 100644 --- a/tools/Dashboard/DevHome.Dashboard/ViewModels/DashboardBannerViewModel.cs +++ b/tools/Dashboard/DevHome.Dashboard/ViewModels/DashboardBannerViewModel.cs @@ -43,6 +43,7 @@ private bool ShouldShowDashboardBanner() } #if DEBUG +#pragma warning disable CA1853 public void ResetDashboardBanner() { ShowDashboardBanner = true; diff --git a/tools/Dashboard/DevHome.Dashboard/Views/DashboardView.xaml.cs b/tools/Dashboard/DevHome.Dashboard/Views/DashboardView.xaml.cs index 378e8968b..335719528 100644 --- a/tools/Dashboard/DevHome.Dashboard/Views/DashboardView.xaml.cs +++ b/tools/Dashboard/DevHome.Dashboard/Views/DashboardView.xaml.cs @@ -1058,6 +1058,7 @@ private void AddResetButton(object sender, RoutedEventArgs e) parent.Children.Insert(index + 1, resetButton); } +#pragma warning disable CA1853 private void ResetButton_Click(object sender, RoutedEventArgs e) { var roamingProperties = Windows.Storage.ApplicationData.Current.RoamingSettings.Values;