Remove option PublishSingleFile from NucuCar.Sensors csproj

This commit is contained in:
Denis-Cosmin Nutiu 2019-11-24 14:29:28 +02:00
parent d703b53a6b
commit 8b9ed04305
2 changed files with 2 additions and 4 deletions

View file

@ -3,8 +3,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework> <TargetFramework>netcoreapp3.0</TargetFramework>
<UserSecretsId>dotnet-NucuCar.BME680Sensor-28FAAD8B-A31F-4BBE-9FF7-30F192D82D6E</UserSecretsId> <UserSecretsId>dotnet-NucuCar.BME680Sensor-28FAAD8B-A31F-4BBE-9FF7-30F192D82D6E</UserSecretsId>
<RuntimeIdentifier>linux-arm</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -20,10 +20,10 @@ Command line utility to play around with the car functionality. You can use it t
### Building and Running. ### Building and Running.
You can build the project then run them as you would run an executable file. To build the project and target the Raspberry Pi you can use the following command:
```$xslt ```$xslt
dotnet build --runtime linux-arm dotnet build --runtime linux-arm -p:PublishSingleFile=true
``` ```
--- ---