add note about .NET project restore
continuous-integration/drone/push Build is passing Details

main
Evan Hemsley 2020-07-22 14:41:12 -07:00
parent f9db7f18e4
commit ecd131a021
1 changed files with 8 additions and 0 deletions

View File

@ -32,6 +32,14 @@ and PongFE.Core.csproj:
</ItemGroup>
```
Once you have added the package reference, the project must be "restored" to bring the types in. This is done automatically during the build process, but you can trigger it manually by doing Ctrl-Shift-P -> .NET: Restore Project in VSCode, or by doing
```sh
dotnet restore
```
in the terminal.
Now we can define our PositionComponent. Create a file: **PongFE/Components/PositionComponent.cs**
```cs