I would like to be able to use secure components on community version of Mule Studio, can i do it? Components like this http://www.mulesoft.com/platform/soa/mule-enterprise-security from enterprise version. How can i install then on my IDE?
Tks
The answer is in your question: you need Mule Enterprise Edition to use Enterprise Edition features. This applies to Mule and to Studio.
Related
I have installed JetBrains Rider on Linux Mint and tried to run migration from Rider Entity framework but it is not available in the project context menu. Please see the screenshot:
My project is ASP.NET MVC Core 2.2
More detailed visual way of fixing this problem is here by JetBrains team: https://blog.jetbrains.com/dotnet/2022/01/31/entity-framework-core-inside-rider-ui-way/
I need to start a project with .Net Core 2.0.0 because of some problem of version with other projects but Visual Studio does not allow it, mainly because the .Net Core 2.0.0 option does not appear in the options and when creating a 2.1 project and change it to 2.0 I make mistakes of compatibility.
They told me that using the .Net Core 2.0 SDK I could create my project, but I have no idea how to install the SDK in Visual Studio or how to use it.
If you could help me with some information for that, I would appreciate it.
You first need to ensure that you have that particular SDK installed. From the command-line you can run:
dotnet --list-sdks
If you don't see the version there, you'll need to install it from: https://dotnet.microsoft.com/download/dotnet-core/2.0
I'm not sure if it will show up in Visual Studio as an option. It should, but it's also end-of-life so may not. Regardless, you can simply edit your csproj and change the <TargetFramework> node:
<TargetFramework>netcoreapp2.0</TargetFramework>
That said, you really should get off 2.0 to at least 2.1. The 2.0 release is end-of-life and unsupported. The 2.1 release is the current LTS (long-term support) version.
Close Visual Studio and then download and install the .net core 2.0 SDK here: https://dotnet.microsoft.com/download/dotnet-core/2.0
Use the dotnet-installer to install it: https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script
Please be aware that .net core 2 is no longer supported by Microsoft and it is recommended that you use .net core 2.1 or greater.
When i try to deploy my solution from Visual Studio 2012 to a ipad Device or simulator, all PCL projects are giving error like:
MT0011:Cirrious.CrossCore.dll
was built against a more recent runtime (NET_4_0) than MonoTouch supports.
I tried to do Clean and Rebuild all solution with success.
My Xamarin.iOS version is 1.1.200 (stable).
My MonoTouch.xml file in
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETPortable\v4.0\Profile\Profile104\SupportedFrameworks:
<?xml version="1.0" encoding="utf-8"?>
<Framework DisplayName="MonoTouch"
Identifier="MonoTouch"
Profile="*"
MinimumVersion="*"
MaximumVersion="4.0" />
My VS information:
Microsoft Visual Studio Ultimate 2012
Version 11.0.60610.01 Update 3
Microsoft .NET Framework
Version 4.5.50709
Installed Version: Ultimate
GhostDoc 4.5.13017.0
GhostDoc automatically generates XML documentation comments.
Microsoft Advertising SDK for Windows Phone 6.2.923.0
Microsoft Advertising SDK for Windows Phone
Build 6.2.923.0
Microsoft XNA Game Studio 4.0
Microsoft XNA Game Studio 4.0
Build 4.0.40906.0
NuGet Package Manager 2.2.40116.9051
NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/.
PreEmptive Analytics Visualizer 1.0
Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product.
SQL Server Data Tools 11.1.20627.00
Microsoft SQL Server Data Tools
Web Developer Tools 1.2.40308.0
Microsoft Web Developer Tools contains the following components:
Page Inspector: Tool that offers an efficient way to decompose Web Applications and diagnose front-end issues.
Web Publishing: Extensions required for Web Publishing for both hosted servers as well as on premises.
Web Form Templates: Includes the default templates for Web Form Applications.
Editor Extensions: Includes HTML, CSS, and JS editor extensions that greatly enhance the development experience.
Xamarin.Android 4.6.08007 (0cc7ae3b)
Visual Studio plugin to enable development for Xamarin.Android.
Xamarin.iOS 1.1.200 (7d63692c)
Visual Studio extension to enable development for Xamarin.iOS
The solution contain projects and not the build Dll.
The problem must be in my pc because a colleague of mine can deploy the same solution to the same pc mac.
Thank you in advance for help,
Paulo Dias
First MT0011 is a warning not an error. It's mean to tell you that some stuff might not work or build correctly later.
My Xamarin.iOS version is 1.1.200
That looks like the version of the add-in for Visual Studio. This is not the version of Xamarin.iOS itself.
To support .NET 4.0 assemblies you need to use Xamarin.iOS 6.3+ which is, right now. available on our beta channel. On promoted to stable it will be known as 6.4.
The current stable release of Xamarin.iOS is 6.2.7. This version is based on Mono 2.10 and still use the 2.1, Silverlight-like, BCL assemblies (which explains your warning).
Riddle me this:
Can the new PCL version of Reactive Extensions be made to work with Xamarin?
If so, how?
Nope. But check out https://github.com/mono/rx/tree/rx-oss-v2.1/Rx/NET/Source/Rx_Xamarin for versions that do work.
Yes it is possible. At the moment, you will need to switch to the beta channel of the Xamarin tools which implement Mono 3.0. This can be done via Tools > Options > Xamarin in Visual Studio 2012.
Xamarin.Android 4.7 Information
Xamarin.iOS 6.3 Information
The ReactiveUI project should have all of the libraries that you need. Here is a link to the libraries folder on their nuget site.
VS 2010 comes with .NET Framework 4.0, let's say I want to use a new ability that is in C# 4.0, so I think if I just go and download .NET Framework 4.0 I should still be able to use that ability with VS 2008? right? it is a little confusing for me .
thanks
Here are the release date of every version of C# and the .NET Framework, and with which version of Visual Studio they were released.
You can see that .NET Framework 4.0 has been released with Visual Studio 2010. So you won't be able to target .NET 4.0 with VS 2008 since it does not know about it.
You will need to use Visual Studio 2010 and install .NET 4 if you want to use all the new C# 4.0 features. Some features do work - see this question for more information.
Visual Studio 2008 doesn't know about targeting the .NET 4 framework so you can't use that.
MSDN Forum reference
No, Microsoft. dont allow you to use its .Net 4.0 in VS2008 as it is for. Net 3.5. You need to have VS2010 to use. Net 4.0.
Because there are certain tools which are in VS2010 to work with that framework and VS2008 dont have them.