-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename repos directory to repo-projects to align with VMR naming * Remove unused RepoApiImplemented properties * Remove unused RepositoryName override capability * Cleanup netcorecli-fsc project * Cleanup newtonsoft-json project * remove DeterministicBuildOptOut property
- Loading branch information
1 parent
8fbead5
commit 57af468
Showing
11 changed files
with
52 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project> | ||
|
||
<ItemGroup> | ||
<ProjectToBuild Include="$(RepoRoot)repos\*.proj" /> | ||
<ProjectToBuild Include="$(RepoRoot)repo-projects\*.proj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<Project> | ||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<PropertyGroup> | ||
<OutputArgs>/bl</OutputArgs> | ||
<OutputArgs>$(OutputArgs) /v:$(LogVerbosity)</OutputArgs> | ||
<OutputArgs>$(OutputArgs) /p:OutputPath=$(OutputPath)$(RepositoryName)/</OutputArgs> | ||
<OutputArgs>$(OutputArgs) /p:BaseIntermediateOutputPath=$(IntermediatePath)$(RepositoryName)</OutputArgs> | ||
<OutputArgs>$(OutputArgs) $(RedirectRepoOutputToLog)</OutputArgs> | ||
|
||
<BuildCommandArgs>pack</BuildCommandArgs> | ||
<BuildCommandArgs>$(BuildCommandArgs) -c $(Configuration)</BuildCommandArgs> | ||
<BuildCommandArgs>$(BuildCommandArgs) --output $(SourceBuiltPackagesPath)</BuildCommandArgs> | ||
<BuildCommandArgs>$(BuildCommandArgs) --no-build FSharp.NET.Sdk.csproj</BuildCommandArgs> | ||
<BuildCommandArgs>$(BuildCommandArgs) /p:NuspecFile=FSharp.NET.Sdk.nuspec</BuildCommandArgs> | ||
<BuildCommandArgs>$(BuildCommandArgs) $(OutputArgs)</BuildCommandArgs> | ||
<BuildCommand>$(DotnetToolCommand) $(BuildCommandArgs)</BuildCommand> | ||
|
||
<PackagesOutput>$(SourceBuiltPackagesPath)</PackagesOutput> | ||
<ProjectDirectory>$(SubmoduleDirectory)$(RepositoryName)/</ProjectDirectory> | ||
</PropertyGroup> | ||
|
||
<Target Name="RepoRestore" BeforeTargets="Build" DependsOnTargets="UpdateNuGetConfig"> | ||
<Exec Command="$(DotnetToolCommand) restore FSharp.NET.Sdk.csproj $(OutputArgs)" | ||
WorkingDirectory="$(ProjectDirectory)" | ||
EnvironmentVariables="@(EnvironmentVariables)" | ||
IgnoreStandardErrorWarningFormat="true" /> | ||
</Target> | ||
|
||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.