Skip to content

Commit

Permalink
Use an apphost after all
Browse files Browse the repository at this point in the history
Fixes all issues with running
  • Loading branch information
RA-Kooi committed Dec 21, 2021
1 parent 03bb5f1 commit 8a10b9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DwarfOne2C/DwarfOne2C.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<UseAppHost>false</UseAppHost>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ As an example we will take a fictional game called YourGame which has an elf wit

```sh
dwarfone YourGame.elf > YourGame-dwarf.txt
dotnet DwarfOne2C.dll --list-files YourGame-dwarf.txt
DwarfOne2C.exe --list-files YourGame-dwarf.txt

# Pick a file from the output

# Output in current folder, add path to output folder at the end if you want it to output somewhere else
dotnet DwarfOne2C.dll YourGame-dwarf.txt C:\YourGame\ C:\YourGame\src\main.cpp
DwarfOne2C.exe YourGame-dwarf.txt C:\YourGame\ C:\YourGame\src\main.cpp
```

If you're lucky and it didn't crash, you should now have a file called `main.cpp` in `.\src\`

0 comments on commit 8a10b9a

Please sign in to comment.