Skip to content

Commit

Permalink
Fix links (#128)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Asplund <[email protected]>
  • Loading branch information
mwasplund and Matthew Asplund authored Aug 30, 2022
1 parent ce542ff commit 843087d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Docs/Samples/CSharp/Build-Extension.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# C# Build Extension
This is a console application that has a custom build extension that alters the build state. The custom build Tasks will run before and after the core Build Task and will simply print a nice hello message.

[Source](https://github.com/SoupBuild/Soup/tree/main/Samples/CSharp/SimpleBuildExtension)
[Source](https://github.com/SoupBuild/Soup/tree/main/Samples/CSharp/BuildExtension)

## Extension/Recipe.toml
The Recipe file that defines the build extension dynamic library "Samples.SimpleBuildExtension.Extension" that will register new build tasks.
The Recipe file that defines the build extension dynamic library "Samples.BuildExtension.Extension" that will register new build tasks.
```
Name = "Samples.CSharp.BuildExtension.Extension"
Language = "C#"
Expand Down Expand Up @@ -79,7 +79,7 @@ namespace Samples.CSharp.BuildExtension.Extension
```

## Executable/Recipe.toml
The Recipe file that defines the executable "SimpleBuildExtension.Executable". The one interesting part is the relative path reference to the custom build extension through "Build" Dependencies.
The Recipe file that defines the executable "BuildExtension.Executable". The one interesting part is the relative path reference to the custom build extension through "Build" Dependencies.
```
Name = "Samples.CSharp.BuildExtension.Executable"
Language = "C#"
Expand Down
2 changes: 1 addition & 1 deletion Docs/Samples/CSharp/Console-Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A C# Program file that implements the main method.
```
using System;
namespace SimpleConsoleApplication
namespace ConsoleApplication
{
public class Program
{
Expand Down
2 changes: 1 addition & 1 deletion Docs/Samples/Cpp/Build-Extension.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# C++ Build Extension
This is a console application that has a custom build extension that alters the build state. The custom build Tasks will run before and after the core Build Task and will simply print a nice hello message.

[Source](https://github.com/SoupBuild/Soup/tree/main/Samples/Cpp/SimpleBuildExtension)
[Source](https://github.com/SoupBuild/Soup/tree/main/Samples/Cpp/BuildExtension)

## Extension/Recipe.toml
The Recipe file that defines the build extension dynamic library "Samples.Cpp.BuildExtension.Extension" that will register new build tasks.
Expand Down
2 changes: 1 addition & 1 deletion Docs/Samples/Cpp/Console-Application.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# C++ Console Application
This is the smallest amount of code to get a console application building using Soup.

[Source](https://github.com/SoupBuild/Soup/tree/main/Samples/Cpp/SimpleConsoleApplication)
[Source](https://github.com/SoupBuild/Soup/tree/main/Samples/Cpp/ConsoleApplication)

## Recipe.toml
The Recipe file that sets the name, type, version and the single source file.
Expand Down

0 comments on commit 843087d

Please sign in to comment.