Re: .net question

2019-11-27 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: .net question Hi there,@9: .cs files are files with source code, you can't run them directly. You can either compile them from command line, or run the executable created for example by VisualStudio after building your project.Navigate to your project directory / Solution name / bin

Re: .net question

2019-11-25 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: .net question @7, what's that? @8, How do I run .cs files from the cmd? URL: https://forum.audiogames.net/post/480023/#p480023 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames

Re: .net question

2019-11-25 Thread AudioGames . net Forum — Developers room : Munawar via Audiogames-reflector
Re: .net question This program will pop up a console window, so look for that window. It could be that it's throwing an error and closing the console before you have time to look at it. In this case just run the executable from your command prompt so you can see the output.You can also

Re: .net question

2019-11-24 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector
Re: .net question Weird, everything sseems OK. Try to use the Rider. URL: https://forum.audiogames.net/post/479782/#p479782 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames

Re: .net question

2019-11-24 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: .net question So I looked up a tutorial and I made a small hello world thing using the .net framework. not net core. But if I press f5, nothing. With .net core it was sending an error, here it's nothing. Any ideas?Oh yeah, here's the code.using System;    using

Re: .net question

2019-11-24 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: .net question So I looked up a tutorial and I made a small hello world thing using the .net framework. not net core. But if I press f5, nothing. With .net core it was sending an error, here it's nothing. Any ideas?Oh yeah, here's the code.using System    using

Re: .net question

2019-11-24 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: .net question @3, where's that option?@4, is the syntax basically the same as with the .net core because the guide i'm using uses the .net core. URL: https://forum.audiogames.net/post/479669/#p479669 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: .net question

2019-11-24 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector
Re: .net question use the .NET Framework, not the .NET Core. URL: https://forum.audiogames.net/post/479560/#p479560 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: .net question

2019-11-23 Thread AudioGames . net Forum — Developers room : Munawar via Audiogames-reflector
Re: .net question Hi,Your project needs to be configured to use a version of the framework that's installed on your computer. Go into the project's properties. You can set the .NET version from there. The easiest way to reset the required .NET version is to just create a new project. URL

Re: .net question

2019-11-23 Thread AudioGames . net Forum — Developers room : Munawar via Audiogames-reflector
Re: .net question Hi,Your project needs to be configured to use a version of the framework that's installed on your computer. Go into the project's properties. You can set the .NET version from there. URL: https://forum.audiogames.net/post/479474/#p479474 -- Audiogames-reflector

Re: .net question

2019-11-23 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
Re: .net question If this helps, here's my error when I press f5.NETSDK1029. Unable to use 'C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Host.win-x64\3.0.0\runtimes\win-x64\native\apphost.exe' as application host executable as it does not contain the expected placeholder byte

.net question

2019-11-23 Thread AudioGames . net Forum — Developers room : Ty via Audiogames-reflector
.net question So I'm coding in c sharp with visual studio community 2019. I have console app installed, but when I go to create a new c sharp project, console, it says, this template requires a version of the .net framework that isn't installed. Does anyone know what version is required