Skip to content

Commit

Permalink
Rename output folder from out to bin
Browse files Browse the repository at this point in the history
  • Loading branch information
dsplaisted committed Sep 1, 2017
1 parent 27dc803 commit 97b7553
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ dlldata.c
# DNX
project.lock.json
artifacts/
out/
bin/

*_i.c
*_p.c
Expand Down
2 changes: 1 addition & 1 deletion build/InitRepo.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<GeneratedPropsDir>$(RepoRoot)/out/obj</GeneratedPropsDir>
<GeneratedPropsDir>$(RepoRoot)/bin/obj</GeneratedPropsDir>
<GitCommitInfoProps>$(GeneratedPropsDir)/GitCommitInfo.props</GitCommitInfoProps>
<HostInfoProps>$(GeneratedPropsDir)/HostInfo.props</HostInfoProps>
<BuildInfoProps>$(GeneratedPropsDir)/BuildInfo.props</BuildInfoProps>
Expand Down
2 changes: 1 addition & 1 deletion build/OutputDirectories.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- BaseOutputDirectory is the root output path for this stage and RID
BaseOutputPath is the project-specific output folder that each project builds into.
This is not confusing at all. -->
<BaseOutputDirectory>$(RepoRoot)/out/$(CliBuildStage)/$(Rid)</BaseOutputDirectory>
<BaseOutputDirectory>$(RepoRoot)/bin/$(CliBuildStage)/$(Rid)</BaseOutputDirectory>
<BaseOutputPath>$([System.IO.Path]::GetFullPath('$(BaseOutputDirectory)/bin/$(MSBuildProjectName)'))</BaseOutputPath>

<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(BaseOutputDirectory)/obj/$(MSBuildProjectName)'))</BaseIntermediateOutputPath>
Expand Down
2 changes: 1 addition & 1 deletion build/Prepare.targets
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@

<Target Name="IsolateArtifactsFromDirectoryBuildFiles">
<Copy SourceFiles="$(RepoRoot)TestAssets\Directory.Build.props"
DestinationFolder ="$(RepoRoot)out"
DestinationFolder ="$(RepoRoot)bin"
SkipUnchangedFiles="true" />
</Target>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static string BuildRid
{
if (string.IsNullOrEmpty(s_buildRid))
{
var buildInfoPath = Path.Combine(RepoRoot, "out", "obj", "BuildInfo.props");
var buildInfoPath = Path.Combine(RepoRoot, "bin", "obj", "BuildInfo.props");
var root = XDocument.Load(buildInfoPath).Root;
var ns = root.Name.Namespace;

Expand Down Expand Up @@ -102,7 +102,7 @@ public RepoDirectoriesProvider(
int previousStage = 2;

_artifacts = artifacts ?? Path.Combine(RepoRoot,
"out",
"bin",
previousStage.ToString(),
BuildRid);
_builtDotnet = builtDotnet ?? Path.Combine(_artifacts, "intermediate", "sharedFrameworkPublish");
Expand All @@ -121,7 +121,7 @@ public RepoDirectoriesProvider(
}

_testWorkingFolder = Path.Combine(RepoRoot,
"out",
"bin",
(previousStage + 1).ToString(),
BuildRid,
"test");
Expand Down

0 comments on commit 97b7553

Please sign in to comment.