Skip to content
Open
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
f0a6ef1
Bump version from 5.0 to 5.1
vb2ae Nov 17, 2025
79f84c9
Update version.json
vb2ae Nov 17, 2025
4ad2d88
Update version from 5.0-beta to 5.1-beta
vb2ae Nov 17, 2025
33318a6
Update version.json
vb2ae Nov 17, 2025
d426c42
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
973eabf
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
6cbb9d7
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
e7ca1f0
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
7c19915
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
23fe4f5
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
b5ec43a
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
52201cc
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
1939dd3
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
4224f3b
Update Nerdbank.GitVersioning package version
vb2ae Nov 17, 2025
02444be
Update Microsoft.WindowsAppSDK and add package updates
vb2ae Nov 17, 2025
9070923
Update test dependencies and project configurations
vb2ae Nov 17, 2025
7862947
Update SDK version from 9.0.x to 10.0.x
vb2ae Nov 18, 2025
7f4d80f
Add net10.0 target framework to project
vb2ae Nov 18, 2025
79ed314
Update target framework to net10.0
vb2ae Nov 18, 2025
941dfb0
Change TargetFramework to TargetFrameworks
vb2ae Nov 18, 2025
3a1b76a
Update target framework to net10.0-windows
vb2ae Nov 18, 2025
5d220df
Upgrade target framework from net8.0 to net10.0
vb2ae Nov 18, 2025
19d2607
Update target framework to net8.0-windows
vb2ae Nov 18, 2025
c5c6bc5
Upgrade .NET SDK version from 9.0.x to 10.0.x
vb2ae Nov 18, 2025
2797924
Add net10.0-windows target framework support
vb2ae Nov 18, 2025
d5c9b00
Update Caliburn.Micro.Platform.csproj
vb2ae Nov 18, 2025
25a5f0b
Update msbuild setup in dotnet.yml
vb2ae Nov 18, 2025
e796f8d
Update MSBuild version range in dotnet.yml
vb2ae Nov 18, 2025
c46ec9c
Refactor workflow to use dotnet msbuild commands
vb2ae Nov 18, 2025
2103205
Update dotnet.yml to use msbuild instead of dotnet
vb2ae Nov 18, 2025
e072e8c
Update target framework from net462 to net472
vb2ae Nov 18, 2025
a98d61e
fix build
vb2ae Nov 19, 2025
64c3b8b
Merge branch '1029-update-version-number-to-51' of https://github.com…
vb2ae Nov 19, 2025
5efe61c
remove msbuild
vb2ae Nov 19, 2025
d67ede2
build fix?
vb2ae Nov 19, 2025
2815e1c
Add UWP project and remove Xamarin.Forms support
vb2ae Nov 29, 2025
ca17107
Add global.json back
vb2ae Nov 29, 2025
a215443
fix codeql version
vb2ae Nov 29, 2025
6187ee8
fix build
vb2ae Nov 30, 2025
f956ae4
fix build
vb2ae Dec 1, 2025
1b62e93
fix autofac sample
vb2ae Dec 3, 2025
a979b8d
update setup-dotnet version in actions
vb2ae Dec 3, 2025
decadf3
Update GitHub Actions workflow for build improvements
vb2ae Dec 4, 2025
57b8f88
Update build environment to windows-2025
vb2ae Dec 4, 2025
ed80c92
Update workflow to use windows-Latest runner
vb2ae Jan 3, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
analyse:
name: Analyse
runs-on: windows-2022
runs-on: windows-latest
permissions:
# required for all workflows
security-events: write
Expand All @@ -29,7 +29,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
config-file: ./.github/codeql/codeql-config.yml # <-- add this line
languages: csharp
Expand Down Expand Up @@ -83,4 +83,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
11 changes: 6 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
build:

runs-on: windows-2022
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -44,7 +44,8 @@ jobs:
uses: NuGet/setup-nuget@v2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

with:
vs-prerelease: true
- name: search workloads
run: dotnet workload search
- name: restore workloads
Expand All @@ -68,16 +69,16 @@ jobs:
run: msbuild ${{env.caliburn_tutorial}} -t:restore

- name: Build feature tutorial
run: msbuild ${{env.caliburn_tutorial}} /t:Build /p:Configuration=${{env.build_configuration}}
run: msbuild ${{env.caliburn_tutorial}} /t:Build /p:Configuration=${{env.build_configuration}}

- name: Restore nuget packages for features
run: msbuild ${{env.caliburn_features}} -t:restore

- name: Build feature features
run: msbuild ${{env.caliburn_features}} /t:Build /p:Configuration=Debug
run: msbuild ${{env.caliburn_features}} /t:Build /p:Configuration=Debug

- name: Pack Nuget
run: msbuild ${{env.caliburn_sln}} /t:package /p:Configuration=${{env.build_configuration}}
run: msbuild ${{env.caliburn_sln}} /t:package /p:Configuration=${{env.build_configuration}}

- name: publish Nuget Packages to GitHub
run: dotnet nuget push ${{env.nuget_upload}} --source ${{env.package_feed}} --api-key ${{secrets.PUBLISH_NUGET_PACKAGE}} --skip-duplicate
Expand Down
2 changes: 1 addition & 1 deletion azure-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steps:
displayName: 'Install .NET'
inputs:
packageType: 'sdk'
version: '9.0.x'
version: '10.0.x'


- task: PowerShell@2
Expand Down
4 changes: 2 additions & 2 deletions samples/features/Features.Avalonia/Features.Avalonia.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<AvaloniaNameGeneratorIsEnabled>false</AvaloniaNameGeneratorIsEnabled>
Expand All @@ -23,7 +23,7 @@

<PackageReference Include="Avalonia.Themes.FLuent" Version="11.3.5" />
<PackageReference Include="MessageBox.Avalonia" Version="3.2.0" />
<PackageReference Include="System.Reactive" Version="6.0.1" />
<PackageReference Include="System.Reactive" Version="6.1.0" />
<PackageReference Include="Xaml.Behaviors.Avalonia" Version="11.3.2" />
<PackageReference Include="Xaml.Behaviors.Interactivity" Version="11.3.2" />
<PackageReference Include="XamlNameReferenceGenerator" Version="1.6.1" />
Expand Down
2 changes: 1 addition & 1 deletion samples/features/Features.NetFive/Features.DotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyName>Features.CrossPlatform</AssemblyName>
<RootNamespace>Features.CrossPlatform</RootNamespace>
Expand Down
10 changes: 5 additions & 5 deletions samples/features/Features.UWP/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System;
using System.Collections.Generic;
using Caliburn.Micro;
using Features.CrossPlatform.ViewModels;
using Features.CrossPlatform.Views;
using Windows.ApplicationModel.Activation;
using Windows.UI.Core;
using Windows.UI.Popups;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Caliburn.Micro;
using Features.CrossPlatform.ViewModels;
using Features.CrossPlatform.Views;


namespace Features.CrossPlatform
{
Expand Down Expand Up @@ -47,7 +47,7 @@ protected override void PrepareViewFirst(Frame rootFrame)
navigationService.Navigated += (s, e) =>
{
navigationManager.AppViewBackButtonVisibility = navigationService.CanGoBack ?
AppViewBackButtonVisibility.Visible :
AppViewBackButtonVisibility.Visible :
AppViewBackButtonVisibility.Collapsed;
};
}
Expand Down
12 changes: 6 additions & 6 deletions samples/features/Features.UWP/Features.UWP.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -11,7 +11,7 @@
<AssemblyName>Features.CrossPlatform</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -247,20 +247,20 @@
<Version>6.2.14</Version>
</PackageReference>
<PackageReference Include="Microsoft.Xaml.Behaviors.Uwp.Managed">
<Version>2.0.1</Version>
<Version>3.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Caliburn.Micro.Core, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\uap10.0.19041\Caliburn.Micro.Core.dll</HintPath>
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\uap10.0.22621.0\Caliburn.Micro.Core.dll</HintPath>
</Reference>
<Reference Include="Caliburn.Micro.Platform, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\uap10.0.19041\Caliburn.Micro.Platform.dll</HintPath>
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\uap10.0.22621.0\Caliburn.Micro.UWP.dll</HintPath>
</Reference>
<Reference Include="Caliburn.Micro.Platform.Core">
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\uap10.0.19041\Caliburn.Micro.Platform.Core.dll</HintPath>
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\uap10.0.22621.0\Caliburn.Micro.Platform.Core.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="..\Features.CrossPlatform.Shared\Features.CrossPlatform.Shared.projitems" Label="Shared" />
Expand Down
11 changes: 5 additions & 6 deletions samples/features/Features.UWP/Views/ActionsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:cm="using:Caliburn.Micro"
xmlns:i="using:Microsoft.Xaml.Interactivity"
xmlns:ii="using:Microsoft.Xaml.Interactions.Core"
xmlns:Interactivity="using:Microsoft.Xaml.Interactivity"
mc:Ignorable="d">

<Page.Resources>
Expand All @@ -32,11 +31,11 @@
<Button cm:Message.Attach="SimpleSayHello" Content="Simple Say Hello (using Message.Attach)" Style="{StaticResource ActionButtonStyle}"/>
<Button cm:Message.Attach="[Event DoubleTapped] = [SimpleSayHello]" Content="Simple Say Hello (Custom Event - Double Tapped)" Style="{StaticResource ActionButtonStyle}"/>
<Button x:Name="FullSyntax" Content="Simple Say Hello (Full Behaviour Syntax)" Style="{StaticResource ActionButtonStyle}">
<i:Interaction.Behaviors>
<ii:EventTriggerBehavior EventName="Click">
<Interactivity:Interaction.Behaviors>
<Interactivity:EventTriggerBehavior EventName="Click">
<cm:ActionMessage MethodName="SimpleSayHello" AssociatedObject="{Binding ElementName=FullSyntax}" />
</ii:EventTriggerBehavior>
</i:Interaction.Behaviors>
</Interactivity:EventTriggerBehavior>
</Interactivity:Interaction.Behaviors>
</Button>
<Button x:Name="SayHello" Content="Say Hello (with parameter)" Style="{StaticResource ActionButtonStyle}"/>
<Button cm:Message.Attach="SayHello(UserName)" Content="Say Hello (with parameter and Message.Attach)" Style="{StaticResource ActionButtonStyle}"/>
Expand Down
11 changes: 10 additions & 1 deletion samples/features/Features.WPF/Features.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -341,4 +343,11 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
<Import Project="..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets'))" />
</Target>
</Project>
2 changes: 1 addition & 1 deletion samples/features/Features.WPF/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package id="Microsoft.NETCore.Platforms" version="7.0.4" targetFramework="net48" />
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="net46" />
<package id="Microsoft.Xaml.Behaviors.Wpf" version="1.1.135" targetFramework="net48" />
<package id="NETStandard.Library" version="2.0.3" targetFramework="net46" requireReinstallation="true" />
<package id="NETStandard.Library" version="2.0.3" targetFramework="net48" />
<package id="System.AppContext" version="4.3.0" targetFramework="net46" requireReinstallation="true" />
<package id="System.Console" version="4.3.1" targetFramework="net48" />
<package id="System.Globalization.Calendars" version="4.3.0" targetFramework="net46" />
Expand Down
6 changes: 3 additions & 3 deletions samples/features/Features.WinUI3/Features.WinUI3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
<ProjectCapability Include="Msix" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.6.241114003" />
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="2.0.9" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.7175" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.8.251106002" />
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Caliburn.Micro.Core">
Expand Down
11 changes: 5 additions & 6 deletions samples/features/Features.WinUI3/Views/ActionsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:cal="using:Caliburn.Micro"
xmlns:i="using:Microsoft.Xaml.Interactivity"
xmlns:ii="using:Microsoft.Xaml.Interactions.Core"
xmlns:Interactivity="using:Microsoft.Xaml.Interactivity"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

Expand All @@ -36,11 +35,11 @@
<Button cal:Message.Attach="SimpleSayHello" Content="Simple Say Hello (using Message.Attach)" Style="{StaticResource ActionButtonStyle}"/>
<Button cal:Message.Attach="[Event DoubleTapped] = [SimpleSayHello]" Content="Simple Say Hello (Custom Event - Double Tapped)" Style="{StaticResource ActionButtonStyle}"/>
<Button x:Name="FullSyntax" Content="Simple Say Hello (Full Behaviour Syntax)" Style="{StaticResource ActionButtonStyle}">
<i:Interaction.Behaviors>
<ii:EventTriggerBehavior EventName="Click">
<Interactivity:Interaction.Behaviors>
<Interactivity:EventTriggerBehavior EventName="Click">
<cal:ActionMessage MethodName="SimpleSayHello" AssociatedObject="{Binding ElementName=FullSyntax}" />
</ii:EventTriggerBehavior>
</i:Interaction.Behaviors>
</Interactivity:EventTriggerBehavior>
</Interactivity:Interaction.Behaviors>
</Button>
<Button x:Name="SayHello" Content="Say Hello (with parameter)" Style="{StaticResource ActionButtonStyle}"/>
<Button cal:Message.Attach="SayHello(UserName)" Content="Say Hello (with parameter and Message.Attach)" Style="{StaticResource ActionButtonStyle}"/>
Expand Down
6 changes: 4 additions & 2 deletions samples/scenarios/Scenario.Autofac/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System;
using System.Collections.Generic;
using Windows.ApplicationModel.Activation;
using System.Threading.Tasks;
using Autofac;
using Scenario.Autofac.ViewModels;
using Windows.ApplicationModel.Activation;

namespace Scenario.Autofac
{
Expand All @@ -26,7 +27,8 @@ protected override void Configure()

protected override void OnLaunched(LaunchActivatedEventArgs args)
{
DisplayRootViewForAsync<ShellViewModel>();
var displayStartPage = Task.Run(async () => await DisplayRootViewForAsync<ShellViewModel>());
displayStartPage.Wait();
}

protected override object GetInstance(Type service, string key)
Expand Down
4 changes: 2 additions & 2 deletions samples/scenarios/Scenario.Autofac/Scenario.Autofac.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AssemblyName>Scenario.Autofac</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -127,7 +127,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac">
<Version>8.1.1</Version>
<Version>9.0.0</Version>
</PackageReference>
<Reference Include="Caliburn.Micro.Core, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
<Reference Include="Caliburn.Micro.Platform.Core">
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\net462\Caliburn.Micro.Platform.Core.dll</HintPath>
</Reference>
<Reference Include="FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\FSharp.Core.8.0.401\lib\netstandard2.0\FSharp.Core.dll</HintPath>
<Reference Include="FSharp.Core, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\FSharp.Core.10.0.100\lib\netstandard2.0\FSharp.Core.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
2 changes: 1 addition & 1 deletion samples/scenarios/Scenario.Functional.App/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="FSharp.Core" version="8.0.401" targetFramework="net48" />
<package id="FSharp.Core" version="10.0.100" targetFramework="net48" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@
<HintPath>..\..\..\bin\Caliburn.Micro.Platform\release\net462\Caliburn.Micro.Core.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<PackageReference Update="FSharp.Core" Version="10.0.100" />
</ItemGroup>
</Project>
60 changes: 0 additions & 60 deletions samples/setup/Setup.Forms/Setup.Forms.Droid/Application.cs

This file was deleted.

Loading
Loading