Skip to content

Commit

Permalink
Merge pull request #16 from thzinc/master
Browse files Browse the repository at this point in the history
Fixed typo in example to prevent copypasta errors
  • Loading branch information
MihaMarkic authored Nov 12, 2020
2 parents 6fba9b6 + 2200724 commit d675008
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ To use the addin just add it to Cake call the aliases and configure any settings
Task("ProtobufGenerator")
.Does(() => {
var settings = new ProtocSettings
{
CSharpOut = Directory("."),
};
var file = File("./definitions.proto");
Protoc(settings, file);
)};
{
CSharpOut = Directory("."),
};
var file = File("./definitions.proto");
Protoc(settings, file);
});
```
Since Google.ProtobufTools nuget package comes with different executable flavors (Linux, Windows, MacOS X - all having both x86 and x64 versions) the addin, unless explicitly defined, uses the most appropriate based on OS you are running the script.

Expand Down

0 comments on commit d675008

Please sign in to comment.