I have a .NET Core 3.1 WPF application that uses System.Reactive version 4.4.1. It builds and works successfully but gives the following warning after building: "A FrameworkReference for 'Microsoft.WindowsDesktop.App' was included in the project. This is implicitly referenced by the .NET SDK and you do not typically need to reference it from your project. " How do i resolve this issue?
Duplicate FrameworkReference for Microsoft.WindowsDesktop.App
333 Views Asked by arlvin At
1
There are 1 best solutions below
Related Questions in WPF
- Sorting a List by its property renames all the objects in the List
- Can't open new instance of another window in my app, in WPF .NET 8
- Binding forecolour and ToolTip to a DataGrid
- how to create Infinite Upgrades in a clicker game
- Try Catch exception is not catching the unhandled exception
- Assigning an object to another doesn't raise PropertyChanged event in WPF
- Masking input in TextBox
- What should I do if Visual Studio has a restriction on creating files with a long name or a long path to these files?
- reading configuration file (mytest.exe.config)
- WPF Windows Initializing is locking the separated thread in .Net 8
- How to bind to the DataContext ViewModel of another view?
- mouse coordinates in image go below 0 and above width
- WPF pop up is behaving differently in English language PC and Japanese language PC
- Multi level project reference using dll
- Unable to unzip archive .NET framework
Related Questions in .NET-CORE
- Repository manager receives the wrong connection string in .net core
- How can I overwrite the localization strings in a library
- Custom type resolution
- How to enable log to console Cosmos Client SDK requests
- Issue with Entity Framework Core: .Include() and .AsNoTracking() not displaying expected related entities
- Using Python CDK to bundle dotnet 8 code to AWS Lambda function
- How to make Visual Studio 2022 project launch Windows Terminal instead of PowerShell?
- Custom Metrics stop saving in App Insight after one hour
- How to send select input data for form submission?
- When I use built-in DockerFile in Visual Studio, I see no errors, but when I try to create image and container using terminal I get an error
- Failure to Execute the DBCommand: SQLite Err. 1 - C# / .NET / Entity Framework Core
- KeyCloak Handshake causing timeout
- problemas con los CORS en .net core 7 y angular 15
- Access Registed Scoped Services and Transient Services using GetService()
- .NET Core DB vs JSON model design
Related Questions in DUPLICATES
- Remove duplicated rows within and between data frames stored in a list
- how to do a filter from a table where 2 different columns has 2 different records which has same set of key combinations in bigquery?
- What line of code do I change to avoid duplication in a linked list?
- Removing duplicate data conditionally in Excel
- MySQL Workbench gives duplicate warnings when there should not be any
- Duplicate value in one column with different categories in another column in Power Query
- Polygon overlap queries very slow
- provider duplicate while compiling a Cordova application for the Android platform
- Wordpress WPML automatically duplicates other languages when a user posts a Listing
- Find non numeric data for a column between duplicate key records
- Find most repeated log lines in a large log file, fuzzy match
- remove duplates from multi lists at same index
- Finding unique combination sets across three columns of data, where order isn't relevant
- Rename columns that are exactly same
- How can I create a new Main Window?
Related Questions in SYSTEM.REACTIVE
- Is there a way to cancel and replace an observable if it is producing too many values too fast?
- Convert from IObservable<byte> to Stream?
- Integrating Observables into Blazor Fluxor Effects like in Angular
- Rx.Net Window inner observables completing early
- Observable from Func delegate
- How to pull from IObservable
- Rx.NET Buffer with delay problem on quotes aggregation
- How to implement a .Debounce() / .DebounceDistinct() extension methods for observable streams in RXNet (C#)?
- How to wait subscriber to complete before onNext?
- RX operator to scan with prior value, with signal deriving from value itself
- What can cause a BehaviorSubject to report unhanded exceptions of another unrelated observable?
- Processing batched events with RX Observables in Hosted Service
- Rx - Scheduler that only allows n number of parallel operations at a time
- How to create a Stream out of IObservable<byte>?
- Converting Stream to Observable
Related Questions in ASSEMBLY-REFERENCES
- Basically a 'does not contain a definition' and ' no accessible extension method' type problem
- Visual Studio adds unnecessary dll files in the output directory
- Reference assembly could not be loaded
- .NET Core - why do 'classic' assembly references not get put into the generated <app>.deps.json files at a higher level?
- The type 'StackPanel' was not found in Visual Studio for Mac
- Using newer version of System.IO.Ports.SerialPort
- Cannot find an assembly reference after changing from a "Console App" to a "Console App (.Net Framework)", doesn't exist in current context?
- Unity : namespace TMPro not found
- How can I solve the missing Office Reference when building on DevOps?
- Azure storage Dll error while importing and exporting
- How do I help my console application find all the referenced assemblies?
- The type or namespace name 'Forms' does not exist in the namespace 'System.Windows' (are you missing an assembly reference?)
- Can't load System.ValueTuple in dynamically compiled code
- Namespace 'Windows' not found in Unity UWP app
- Missing references while calling another application method using reflection
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Thanks for your responses. It appears to be an issue with the System.Reactive library which has been resolved but not yet deployed: https://github.com/dotnet/reactive/pull/1250
We will wait and see after the next release.