-
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.
LittleTestCreator.Console uses the .NET Core library
- Loading branch information
1 parent
12be083
commit 1baf4c2
Showing
5 changed files
with
19 additions
and
198 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
113 changes: 13 additions & 100 deletions
113
LittleTestCreator.Console/LittleTestCreator.Console.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 |
---|---|---|
@@ -1,107 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{11715662-7239-4A09-820B-12D902EB1C1F}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>LittleTestCreator.Console</RootNamespace> | ||
<AssemblyName>LittleTestCreator.Console</AssemblyName> | ||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<Deterministic>true</Deterministic> | ||
<NuGetPackageImportStamp> | ||
</NuGetPackageImportStamp> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="BouncyCastle.Crypto, Version=1.8.8.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Portable.BouncyCastle.1.8.8\lib\net40\BouncyCastle.Crypto.dll</HintPath> | ||
</Reference> | ||
<Reference Include="CommandLine, Version=2.8.0.0, Culture=neutral, PublicKeyToken=5a870481e358d379, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\CommandLineParser.2.8.0\lib\net461\CommandLine.dll</HintPath> | ||
</Reference> | ||
<Reference Include="ICSharpCode.SharpZipLib, Version=1.3.0.8, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\SharpZipLib.1.3.0\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System"> | ||
<HintPath>..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7.2\System.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Exceptions\InvalidOptionException.cs" /> | ||
<Compile Include="Factories\InputConverterFactory.cs" /> | ||
<Compile Include="Factories\OutputFormatterFactory.cs" /> | ||
<Compile Include="LogDrivers\ConsoleDriver.cs" /> | ||
<Compile Include="LogDrivers\FileDriver.cs" /> | ||
<Compile Include="Options.cs" /> | ||
<Compile Include="Program.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="App.config" /> | ||
<None Include="packages.config" /> | ||
<PackageReference Include="CommandLineParser" Version="2.8.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\LittleTestCreator.InputConverter.Kahoot\LittleTestCreator.InputConverter.Kahoot.csproj"> | ||
<Project>{54dbc551-2985-4ff8-9962-20fbb076b6f4}</Project> | ||
<Name>LittleTestCreator.InputConverter.Kahoot</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\LittleTestCreator.InputConverter.Kitty\LittleTestCreator.InputConverter.Kitty.csproj"> | ||
<Project>{43ba32f2-a391-4a77-939d-f9bcbd883e56}</Project> | ||
<Name>LittleTestCreator.InputConverter.Kitty</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\LittleTestCreator.InputConverter.OSConcepts\LittleTestCreator.InputConverter.OSConcepts.csproj"> | ||
<Project>{cfccbbaf-1475-43d0-bbc2-dc428fe064c8}</Project> | ||
<Name>LittleTestCreator.InputConverter.OSConcepts</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\LittleTestCreator.OutputFormatter.Brightspace\LittleTestCreator.OutputFormatter.Brightspace.csproj"> | ||
<Project>{0883b610-a0d9-43b7-83dc-c922808e05e6}</Project> | ||
<Name>LittleTestCreator.OutputFormatter.Brightspace</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\LittleTestCreator.Shared\LittleTestCreator.Shared.csproj"> | ||
<Project>{a5100487-e086-4a1f-bc09-8ac05e62b59a}</Project> | ||
<Name>LittleTestCreator.Shared</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\LittleTestCreator.InputConverter.Kahoot\LittleTestCreator.InputConverter.Kahoot.csproj" /> | ||
<ProjectReference Include="..\LittleTestCreator.InputConverter.Kitty\LittleTestCreator.InputConverter.Kitty.csproj" /> | ||
<ProjectReference Include="..\LittleTestCreator.InputConverter.OSConcepts\LittleTestCreator.InputConverter.OSConcepts.csproj" /> | ||
<ProjectReference Include="..\LittleTestCreator.OutputFormatter.Brightspace\LittleTestCreator.OutputFormatter.Brightspace.csproj" /> | ||
<ProjectReference Include="..\LittleTestCreator.Shared\LittleTestCreator.Shared.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup /> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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