add note about .NET project restore
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
f9db7f18e4
commit
ecd131a021
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue