Skip to content

Commit

Permalink
Renamed "build" directory to "artifacts"
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianeicher committed Jun 28, 2018
1 parent a5ce040 commit b8f8768
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
/build/
/artifacts/
/src/.vs/
/src/_ReSharper*/
obj/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -15,7 +15,7 @@ Directory structure
- `src` contains source code.
- `lib` contains pre-compiled 3rd party libraries which are not available via NuGet.
- `doc` contains a Doxyfile project for generation the API documentation.
- `build` contains the results of various compilation processes. It is created on first usage.
- `artifacts` contains the results of various compilation processes. It is created on first usage.

Building
--------
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -18,9 +18,9 @@ for:
- ps: src\test.ps1

artifacts:
- path: build\Documentation
- path: artifacts\Documentation
name: apidocs
- path: build\Release\*.nupkg
- path: artifacts\Release\*.nupkg

deploy:
- provider: Environment
Expand Down
4 changes: 2 additions & 2 deletions doc/Doxyfile
Expand Up @@ -6,8 +6,8 @@ STRIP_FROM_PATH = ../src
RECURSIVE = YES
EXCLUDE_PATTERNS = */packages/* */*.UnitTests/* */Properties/* */obj/* */bin/* *.NativeMethods.cs */JetBrains.Annotations.cs

OUTPUT_DIRECTORY = ../build/Documentation
GENERATE_TAGFILE = ../build/Documentation/nanobyte-common.tag
OUTPUT_DIRECTORY = ../artifacts/Documentation
GENERATE_TAGFILE = ../artifacts/Documentation/nanobyte-common.tag
HTML_OUTPUT = .

GENERATE_LATEX = NO
Expand Down
4 changes: 2 additions & 2 deletions doc/build.ps1
Expand Up @@ -8,8 +8,8 @@ if (!(Get-Command 0install -ErrorAction SilentlyContinue)) {
$env:PATH = "$env:TEMP\zero-install;$env:PATH"
}

if (Test-Path ..\build\Documentation) {rm -Recurse -Force ..\build\Documentation}
mkdir ..\build\Documentation | Out-Null
if (Test-Path ..\artifacts\Documentation) {rm -Recurse -Force ..\artifacts\Documentation}
mkdir ..\artifacts\Documentation | Out-Null

0install run --batch http://0install.de/feeds/Doxygen.xml

Expand Down
4 changes: 2 additions & 2 deletions doc/build.sh
Expand Up @@ -2,6 +2,6 @@
set -e
cd `dirname $0`

rm -rf ../build/Documentation
mkdir -p ../build/Documentation
rm -rf ../artifacts/Documentation
mkdir -p ../artifacts/Documentation
0install run --batch http://0install.de/feeds/Doxygen.xml
2 changes: 1 addition & 1 deletion src/Common.WinForms/Common.WinForms.csproj
Expand Up @@ -9,7 +9,7 @@
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<RunCodeAnalysis>False</RunCodeAnalysis>
<CodeAnalysisRuleSet>..\CodeAnalysis.ruleset</CodeAnalysisRuleSet>
<OutputPath>..\..\build\$(Configuration)\</OutputPath>
<OutputPath>..\..\artifacts\$(Configuration)\</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Common.csproj
Expand Up @@ -9,7 +9,7 @@
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<RunCodeAnalysis>False</RunCodeAnalysis>
<CodeAnalysisRuleSet>..\CodeAnalysis.ruleset</CodeAnalysisRuleSet>
<OutputPath>..\..\build\$(Configuration)\</OutputPath>
<OutputPath>..\..\artifacts\$(Configuration)\</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down

0 comments on commit b8f8768

Please sign in to comment.