I've tried to add the SonarCFamily plugin for SonarQube Community Edition (v 7.0)
i know that Community Edition is the only free version and it suppports only 9 languages but does not support a plugin for c++ projects
i've tried to add cppcheck plugin and it's working fine.
Any idea if it's possible?
SonarCFamily simply won't work for you without a commercial license. It is not a free analyzer.
Related
I'm using:
IntelliJ IDEA 2018.3.5 (Community Edition)
Build #IC-183.5912.21, built on February 26, 2019
JRE: 1.8.0_152-release-1343-b28 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0
I want to use C/C++ code. I know that there is a separate IDE 'CLion' available for this, but is it possible to integrate C/C++ in this community edition of Intellij only? I don't want to have any seperate IDE.
There is no C/C++ support for IntelliJ IDEA Community and Ultimate at the moment.
Here is the related feature request. Even when implemented, it will be probably available only in the Ultimate version.
For our new project(Using Visual Studio 2017 and .net Framework 4.6), a decision has been taken to use Enterprise Library 6.0 for Logging, Exception Handling and DB access. I have a lot of resources/materials available on Internet on how to use it. My questions are,
I couldn't find any Enterprise Library configuration console available for visual studio 2017. Is there any standalone editor available for EL6.0?
if it's available where to download it?
If there is no extension(for vs2017)/standalone editor available, then how can I configure it manually? Any documentation available to state the properties to be set clearly?
Will EL6.0 supports .net framework 4.6 and work flawlessly?
Please help me to find it out and decide.
I am trying to start a new project using .NET 4.7. I have Creators Update installed as well as the latest version of Visual Studio 2017. When I start a project and device to choose a .NET version, the latest .NET framework version I have is 4.6.2. When I go to download a new .NET framework, it only lists 4.6.2 as the latest via MS that you can download. It says that .NET 4.7 is included in VS 2017. What am I missing?
You need to go to Visual Studio Installer and install an optional component ".NET Framework 4.7 Development Tools".
"A picture is worth a thousand bytes (with adequate compression)" and all that jazz...
The .NET Framework 4.7 was released as part of Windows 10 Creators. For other versions of Windows, you have to install the .NET Framework 4.7.
Offline Installer of .NET Framework 4.7 Developer pack
So I could not find the .Net Framework 4.7.2 Developer tool even in Visual Studio Installer. However you can download & run them from here:
https://www.microsoft.com/net/download/visual-studio-sdks
For anyone late to the party here; In Visual Studio 2019, I had this problem by using a .Net Core template to create my project.
https://learn.microsoft.com/en-us/visualstudio/ide/visual-studio-multi-targeting-overview?view=vs-2019
For non-.NET Framework project templates, for example .NET Core templates, the Framework drop-down list doesn't appear.
Make sure you pick a .Net Framework template when creating a project/solution :)
After a bit of nightmare getting Vs2015 update 3 installed, as per this related question, I rebuilt my MFC C++ project to see how the update performed only to find Edit and Continue is no longer working! Specifically, making any change to any file and using Debug / Apply Code changes i get the following;
myfile.CPP ......\common\myfile.CPP(1): fatal error C1010: unexpected end of file while looking for precompiled header. Did you
forget to add '#include "\cpp\common\stdafx.h"' to your source?
Project : error (null) : Build errors occurred.
The first include in the source file is
#include "\cpp\common\StdAfx.h"
This worked most of the time under update 2, but edit and continue was failing and reporting that it had succeeded reasonably regularly. Only reason I installed this update as it was supposed to fix this issue but now it is broken entirely and I'm looking at a full uninstall, and re-install of VS2015 update 2 over the weekend.
Anyone else hitting this problem and have a solution? Could possibly be a dodgy installation as even on the full ISO install, the installer failed with missing files and I had to skip two sections. Given this is a release and not a release candidate, the QA seems abysmal, I fail to see why a release version would include any beta functionality. VS2015 detail below;
Microsoft Visual Studio Professional 2015 Version 14.0.25421.03 Update
3 Microsoft .NET Framework Version 4.6.01055
Installed Version: Professional
LightSwitch for Visual Studio 2015 00325-60000-80195-AA437 Microsoft
LightSwitch for Visual Studio 2015
Visual Basic 2015 00325-60000-80195-AA437 Microsoft Visual Basic
2015
Visual C# 2015 00325-60000-80195-AA437 Microsoft Visual C# 2015
Visual C++ 2015 00325-60000-80195-AA437 Microsoft Visual C++ 2015
Application Insights Tools for Visual Studio Package 7.0.20622.1
Application Insights Tools for Visual Studio
ASP.NET and Web Tools 2015.1 (Beta8) 14.1.11106.0 ASP.NET and Web
Tools 2015.1 (Beta8)
ASP.NET Web Frameworks and Tools 2012.2 4.1.41102.0 For additional
information, visit http://go.microsoft.com/fwlink/?LinkID=309563
ASP.NET Web Frameworks and Tools 2013 5.2.40314.0 For additional
information, visit http://www.asp.net/
Common Azure Tools 1.8 Provides common services for use by Azure
Mobile Services and Microsoft Azure Tools.
InstallShield Limited Edition InstallShield. For more information
visit the Flexera Software website at
http://www.FlexeraSoftware.com. Copyright © 2015 Flexera Software
LLC. All Rights Reserved.
JavaScript Language Service 2.0 JavaScript Language Service
JavaScript Project System 2.0 JavaScript Project System
Microsoft Azure Mobile Services Tools 1.4 Microsoft Azure Mobile
Services Tools
PreEmptive Analytics Visualizer 1.2 Microsoft Visual Studio
extension to visualize aggregated summaries from the PreEmptive
Analytics product.
SQL Server Data Tools 14.0.60519.0 Microsoft SQL Server Data Tools
TypeScript 1.8.34.0 TypeScript tools for Visual Studio
Visual Assist For more information about Visual Assist, see the
Whole Tomato Software website at http://www.WholeTomato.com. Copyright
(c) 1997-2016 Whole Tomato Software, Inc.
Visual Commander 2.3 For more information about Visual Commander,
see the website at https://vlasovstudio.com/visual-commander/.
Copyright (c) 2013-2015 Vlasov Studio.
Visual Studio Tools for Universal Windows Apps 14.0.25420.01 The
Visual Studio Tools for Universal Windows apps allow you to build a
single universal app experience that can reach every device running
Windows 10: phone, tablet, PC, and more. It includes the Microsoft
Windows 10 Software Development Kit.
(Apologies for the ranty nature of this question, but I also put it up as a caveat for those thinking of installing this update)
Following on from the same discussion on MSDN here a breaking change in update 3 is as follows
Allow Precompiling (Native only): The debug option Debug > Options >
General > Allow Precompiling (Native only) is no longer supported with
Visual Studio 2015 Update 3 and the default debugger. This is a legacy
setting for a marginal performance improvement that has no functional
impact.
Disabling the above and doing a rebuild all fixes edit and continue.
I know the premium edition has a CFML plugin, but does the Community Edition? I really need to get away form using Eclipse. If all else fails I can use the Premium trial for the time being.
This plug-in is available only in IntelliJ IDEA Ultimate Edition.
CFML/Coldfusion plugin in not available for IntelliJ Community edition.
Available only on IntelliJ Ultimate Edition.
I would use Sublime Text 2, available here Sublime Text 2
There is a very good ColdFusion plugin available for it not to mention the entire plugin ecosystem it has.