Move source code to src directory
This commit is contained in:
parent
49782b0325
commit
c9649000ea
109 changed files with 5 additions and 4 deletions
|
@ -19,6 +19,7 @@ class Build : NukeBuild
|
|||
[Solution] readonly Solution Solution;
|
||||
|
||||
AbsolutePath OutputDirectory => RootDirectory / "output";
|
||||
AbsolutePath SourceDirectory => RootDirectory / "src";
|
||||
|
||||
Target Clean => _ => _
|
||||
.Before(Restore)
|
||||
|
@ -57,7 +58,7 @@ class Build : NukeBuild
|
|||
.DependsOn(Test)
|
||||
.Executes(() =>{
|
||||
DotNetPublish(s => s
|
||||
.SetProject(RootDirectory / "Website/Website.csproj")
|
||||
.SetProject(SourceDirectory / "Website/Website.csproj")
|
||||
.SetConfiguration(Configuration)
|
||||
.SetOutput(OutputDirectory));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue