How to create a WPF project without using Visual Studio? [closed] - wpf

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
The community reviewed whether to reopen this question 1 year ago and left it closed:
Original close reason(s) were not resolved
Improve this question
How can I create (and run) a new WPF (Windows Presentation Foundation) project without having Visual Studio installed? My primary editor is VS code but it does not have the feature for creating new projects from templates?

VS Code is designed more to host Console based apps such as .Net Core, .Net Framework Console, and Node.js. If you would like to develop WPF apps look for a different solution. I highly recommend using Visual Studio by Microsoft.

write in terminal "dotnet new" and check the list. Class library is at "dotnet new classlib", but I'm interested in how to create WPF applications too, because there isn't that comand in the list.

Related

Visual Studio Code does not show IntelliSense? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
Visual Studio Code does not show any IntelliSense when working with react application development. and cannot navigate through files. but it works for other simple application development(eg: NodeJs application). vs code initializing JS/TS language features but it never stops.
what is the issue? how can I solve it?
I think first you have to try to solve this issue by installing appropriate Extensions from marketplace.
If it not works download the latest version of Visual Studio Code
and reinstall.
You can also refer React in Visual Studio Code

F# TextEditor control for web [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm looking for a control I could integrate to my angular web application to let my users edit some F# code.
For now they just modify it through a regular text area. The F# code is then saved in a database field and is compiled and executed by another external process.
But I'm looking for something providing keywords formatting and maybe intellisense.
There is no need to run the F# code, just a nice editor.
Thanks
Dan
As far as I know, there are two open source projects you can use:
FSharpWebIntellisense provides an integration for the Ace editor and for CodeMirror. It is an older project that has been the core for the F# support for IPython Notebook and I also used it in a couple of project including fun3d.net. For Fun3D, I modified it a bit (made it simpler with Suave backend), so you might want to use this version instead. I tried turning this into a stand-alone repo which can be referenced via Paket as shown in a demo.
Ionide Web is a new work-in-progress project that brings Ionide (F# support for VS Code) to the web. This is based on the Monaco editor (by Microsoft) which is powering VS Code. I expect there will be more activity here in the near future.

Alternative to Team Foundation Build for continous delivery? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
We currently use TFS 2010 for our source control. Is there an alternative for continuous deployment\builds when we do checkins? We are stuck with TFS 2010, not sure if there are open source alternatives that would work with it?
We used TFS 2010 for gated checkins and CI builds up until last October and they worked great. We upgraded to TFS 2015 and now use a mix of older XAML and the new build system builds.
We use Thoughtworks GO! for our CD and pipeline orchestration. GO! can be triggered by new changesets in TFS. The two worked great for us.

Visual IDE with WinForms for C? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Background:
I worked a lot with C#.Net in the last years (Visual Studio).
At the moment I am on a project for iPhones, I use the iTunes MobileDevice.dll and have a lot of reference code in C.
I try to give my best to do it in C#.Net but I give up now and like to change to C.
So I will now rebuild my C#.Net Code, its a WinForm Project with a lots of events and so on.
Now I search the best IDE, I tried Eclipse but as far as I see there is no WinForm Visual-thing I can use, or? Ideas?
There is no such thing as WinForms for C, nothing even close as far as I know.
However, C++/CLI might be what you are looking for. Because it is c++ it can easily interoperate with C libraries, and because it is also .Net is can interoperate with .Net libraries (like those that comprise WinForms).
Some other Stackoverflow questions have addressed this and their answers are informative:
How to use C++/CLI to program Winforms applications
Can I use C++/CLI (.NET Winforms/WPF ) to provide GUI for app written in native C & C++
If you go the C++/CLI route, Visual Studio will likely be the best visual IDE.

vb.net/C# code editor with color coding [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any winforms source code editor controls available with color coding ? pref. open source
I seem to recall having come across something like that previously but can't seem to recall it ?
I believe that Scintilla is an open source syntax-highlighting editor component. There is an open source .Net wrapper utility on CodePlex.
SharpDevelop is an open source application that has an editor with color coding. You can check out how they implemented the color coding.
http://www.icsharpcode.net/OpenSource/SD/
Visual Studio Express?
Here is a simple winForms control that will do syntax highlight, with an opensource license as you requested.
https://github.com/jmonasterio/AceWinforms/blob/master/README.md

Resources