A bug I encountered. #32
Replies: 5 comments 1 reply
-
Sorry, I'm not familiar with environments other than Windows, so I can't give you good advice. However, I think it's unusual to try to compile Doom.cs directly. Normally, you would use the |
Beta Was this translation helpful? Give feedback.
-
Checkout full project or download as zip. Navigate to folder with .sln. type "dotnet build". |
Beta Was this translation helpful? Give feedback.
-
It gave me this: Build FAILED. /home/pi/DOOM/managed-doom-master/ManagedDoom/ManagedDoom.csproj : error NU1102: Unable to find package runtime.linux-arm.Microsoft.DotNet.ILCompiler with version (= 7.0.18) [/home/pi/DOOM/managed-doom-master/ManagedDoom.sln] |
Beta Was this translation helpful? Give feedback.
-
There is no .net 17. Latest is 8. You are likely using visual studio with msbuild 17? You don't need visual studio at all. Just the .net sdk. Then you can simply compile from command line without the visual studio and msbuild Overhead |
Beta Was this translation helpful? Give feedback.
-
According to the logs, it seems that the NuGet package download is failing due to the lack of an internet connection. How about reviewing the internet connection settings? 🤔 |
Beta Was this translation helpful? Give feedback.
-
You see, I am running this on a raspberry pi 4 with Debian version buster. I compiled Doom.cs and got this:
Doom.cs(20,19): error CS0234: The type or namespace name
Audio' does not exist in the namespace
ManagedDoom'. Are you missing an assembly reference?Doom.cs(21,19): error CS0234: The type or namespace name
Video' does not exist in the namespace
ManagedDoom'. Are you missing an assembly reference?Doom.cs(22,19): error CS0234: The type or namespace name
UserInput' does not exist in the namespace
ManagedDoom'. Are you missing an assembly reference?Doom.cs(28,17): error CS0246: The type or namespace name
CommandLineArgs' could not be found. Are you missing an assembly reference? Doom.cs(29,17): error CS0246: The type or namespace name
Config' could not be found. Are you missing an assembly reference?Doom.cs(30,17): error CS0246: The type or namespace name
GameContent' could not be found. Are you missing an assembly reference? Doom.cs(31,17): error CS0246: The type or namespace name
IVideo' could not be found. Are you missing an assembly reference?Doom.cs(32,17): error CS0246: The type or namespace name
ISound' could not be found. Are you missing an assembly reference? Doom.cs(33,17): error CS0246: The type or namespace name
IMusic' could not be found. Are you missing an assembly reference?Doom.cs(34,17): error CS0246: The type or namespace name
IUserInput' could not be found. Are you missing an assembly reference? Doom.cs(36,22): error CS0246: The type or namespace name
DoomEvent' could not be found. Are you missing an assembly reference?Doom.cs(38,17): error CS0246: The type or namespace name
GameOptions' could not be found. Are you missing an assembly reference? Doom.cs(40,17): error CS0246: The type or namespace name
DoomMenu' could not be found. Are you missing an assembly reference?Doom.cs(42,17): error CS0246: The type or namespace name
OpeningSequence' could not be found. Are you missing an assembly reference? Doom.cs(44,17): error CS0246: The type or namespace name
DemoPlayback' could not be found. Are you missing an assembly reference?Doom.cs(46,17): error CS0246: The type or namespace name
TicCmd' could not be found. Are you missing an assembly reference? Doom.cs(47,17): error CS0246: The type or namespace name
DoomGame' could not be found. Are you missing an assembly reference?Doom.cs(49,17): error CS0246: The type or namespace name
WipeEffect' could not be found. Are you missing an assembly reference? Doom.cs(52,17): error CS0246: The type or namespace name
DoomState' could not be found. Are you missing an assembly reference?Doom.cs(53,17): error CS0246: The type or namespace name
DoomState' could not be found. Are you missing an assembly reference? Doom.cs(63,21): error CS0246: The type or namespace name
CommandLineArgs' could not be found. Are you missing an assembly reference?Doom.cs(63,43): error CS0246: The type or namespace name
Config' could not be found. Are you missing an assembly reference? Doom.cs(63,58): error CS0246: The type or namespace name
GameContent' could not be found. Are you missing an assembly reference?Doom.cs(63,79): error CS0246: The type or namespace name
IVideo' could not be found. Are you missing an assembly reference? Doom.cs(63,93): error CS0246: The type or namespace name
ISound' could not be found. Are you missing an assembly reference?Doom.cs(63,107): error CS0246: The type or namespace name
IMusic' could not be found. Are you missing an assembly reference? Doom.cs(63,121): error CS0246: The type or namespace name
IUserInput' could not be found. Are you missing an assembly reference?Doom.cs(180,29): error CS0246: The type or namespace name
GameSkill' could not be found. Are you missing an assembly reference? Doom.cs(235,39): error CS0246: The type or namespace name
DoomKey' could not be found. Are you missing an assembly reference?Doom.cs(356,16): error CS0246: The type or namespace name
UpdateResult' could not be found. Are you missing an assembly reference? Doom.cs(538,31): error CS0246: The type or namespace name
DoomEvent' could not be found. Are you missing an assembly reference?Doom.cs(546,16): error CS0246: The type or namespace name
DoomState' could not be found. Are you missing an assembly reference? Doom.cs(547,16): error CS0246: The type or namespace name
OpeningSequence' could not be found. Are you missing an assembly reference?Doom.cs(548,16): error CS0246: The type or namespace name
DemoPlayback' could not be found. Are you missing an assembly reference? Doom.cs(549,16): error CS0246: The type or namespace name
GameOptions' could not be found. Are you missing an assembly reference?Doom.cs(550,16): error CS0246: The type or namespace name
DoomGame' could not be found. Are you missing an assembly reference? Doom.cs(551,16): error CS0246: The type or namespace name
DoomMenu' could not be found. Are you missing an assembly reference?Doom.cs(552,16): error CS0246: The type or namespace name `WipeEffect' could not be found. Are you missing an assembly reference?
Any way to help?
Beta Was this translation helpful? Give feedback.
All reactions