-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read and determine default OutputPath for projects
- Loading branch information
1 parent
71d138c
commit 3039e5e
Showing
15 changed files
with
426 additions
and
8 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
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
15 changes: 15 additions & 0 deletions
15
...ples/Ce.Labs.Samples.CPSProjectNoOutputPath/Ce.Labs.Samples.CPSProjectNoOutputPath.csproj
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,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net461</TargetFramework> | ||
<SkipValidatePackageReferences>true</SkipValidatePackageReferences> | ||
<Company>Code Effect</Company> | ||
<OutputType>Library</OutputType> | ||
<Authors>Code Effect</Authors> | ||
<Product>CE Labs</Product> | ||
<Description>Sample project for running testing CE Labs BuildTools</Description> | ||
<RootNamespace>Ce.Labs.Samples</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
</PropertyGroup> | ||
</Project> |
6 changes: 6 additions & 0 deletions
6
src/testing/samples/Ce.Labs.Samples.CPSProjectNoOutputPath/SampleClass1IncludedInproject.cs
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,6 @@ | ||
namespace Ce.Labs.Samples | ||
{ | ||
public class SampleClass1IncludedInproject | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...es.CPSProjectNoOutputPathNoRuntime/Ce.Labs.Samples.CPSProjectNoOutputPathNoRuntime.csproj
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,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net461</TargetFramework> | ||
<SkipValidatePackageReferences>true</SkipValidatePackageReferences> | ||
<Platforms>AnyCPU;x64</Platforms> | ||
<Company>Code Effect</Company> | ||
<OutputType>Library</OutputType> | ||
<Authors>Code Effect</Authors> | ||
<Product>CE Labs</Product> | ||
<Description>Sample project for running testing CE Labs BuildTools</Description> | ||
<RootNamespace>Ce.Labs.Samples</RootNamespace> | ||
</PropertyGroup> | ||
</Project> |
6 changes: 6 additions & 0 deletions
6
.../samples/Ce.Labs.Samples.CPSProjectNoOutputPathNoRuntime/SampleClass1IncludedInproject.cs
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,6 @@ | ||
namespace Ce.Labs.Samples | ||
{ | ||
public class SampleClass1IncludedInproject | ||
{ | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...e.Labs.Samples.CPSProjectNoOutputPathx64/Ce.Labs.Samples.CPSProjectNoOutputPathx64.csproj
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,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net461</TargetFramework> | ||
<RuntimeIdentifier>win7-x64</RuntimeIdentifier> | ||
<SkipValidatePackageReferences>true</SkipValidatePackageReferences> | ||
<Platforms>AnyCPU;x64</Platforms> | ||
<Company>Code Effect</Company> | ||
<OutputType>Library</OutputType> | ||
<Authors>Code Effect</Authors> | ||
<Product>CE Labs</Product> | ||
<Description>Sample project for running testing CE Labs BuildTools</Description> | ||
<RootNamespace>Ce.Labs.Samples</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
</Project> |
6 changes: 6 additions & 0 deletions
6
...esting/samples/Ce.Labs.Samples.CPSProjectNoOutputPathx64/SampleClass1IncludedInproject.cs
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,6 @@ | ||
namespace Ce.Labs.Samples | ||
{ | ||
public class SampleClass1IncludedInproject | ||
{ | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...ProjectNoOutputPathx64NoRuntime/Ce.Labs.Samples.CPSProjectNoOutputPathx64NoRuntime.csproj
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,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net461</TargetFramework> | ||
<SkipValidatePackageReferences>true</SkipValidatePackageReferences> | ||
<Company>Code Effect</Company> | ||
<OutputType>Library</OutputType> | ||
<Authors>Code Effect</Authors> | ||
<Product>CE Labs</Product> | ||
<Description>Sample project for running testing CE Labs BuildTools</Description> | ||
<RootNamespace>Ce.Labs.Samples</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
</Project> |
6 changes: 6 additions & 0 deletions
6
...mples/Ce.Labs.Samples.CPSProjectNoOutputPathx64NoRuntime/SampleClass1IncludedInproject.cs
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,6 @@ | ||
namespace Ce.Labs.Samples | ||
{ | ||
public class SampleClass1IncludedInproject | ||
{ | ||
} | ||
} |
Oops, something went wrong.