-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move every Touch.Client projects to its own folder. (#69)
It's complicated to have multiple projects in the same folder and not end up confusing VSfM or the build system, so just put each project in its own folder. * The Directory.Build.props file is now unnecessary, so remove it. * It's no longer needed to set BaseIntermediateOutputPath, so don't do it. * We can use the default OutputPath again. * Make sure NUNITLITE_NUGET is defined in all configurations. Also add a watchOS project.
- Loading branch information
1 parent
09733ed
commit 2c2a55e
Showing
7 changed files
with
130 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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,76 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>8.0.30703</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{5A3AB2C1-17A9-40C0-B889-2B5795C1C10E}</ProjectGuid> | ||
<ProjectTypeGuids>{FC940695-DFE0-4552-9F25-99AF4A5619A1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>Touch.Client</RootNamespace> | ||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix> | ||
<AssemblyName>Touch.Client</AssemblyName> | ||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<OutputPath>bin\Debug</OutputPath> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<DefineConstants>DEBUG;NUNITLITE_NUGET</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<OutputPath>bin\Release</OutputPath> | ||
<DebugType>full</DebugType> | ||
<Optimize>true</Optimize> | ||
<DefineConstants>NUNITLITE_NUGET</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<MtouchVerbosity></MtouchVerbosity> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Xamarin.WatchOS" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Resources\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\HttpTextWriter.cs"> | ||
<Link>HttpTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\NUnitOutputTextWriter.cs"> | ||
<Link>NUnitOutputTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\Options.cs"> | ||
<Link>Options.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TcpTextWriter.cs"> | ||
<Link>TcpTextWriter.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TestRocks.cs"> | ||
<Link>TestRocks.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TouchOptions.cs"> | ||
<Link>TouchOptions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\NUnitLite\TouchRunner\TouchRunner.cs"> | ||
<Link>TouchRunner.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NUnitLite"> | ||
<Version>3.12.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="NUnit.Extension.NUnitV2ResultWriter"> | ||
<Version>3.6.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\WatchOS\Xamarin.WatchOS.CSharp.targets" /> | ||
</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