Skip to content

Commit

Permalink
LittleTestCreator.Console uses the .NET Core library
Browse files Browse the repository at this point in the history
  • Loading branch information
little-apps committed Nov 9, 2020
1 parent 12be083 commit 1baf4c2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 198 deletions.
46 changes: 0 additions & 46 deletions LittleTestCreator.Console/App.config

This file was deleted.

113 changes: 13 additions & 100 deletions LittleTestCreator.Console/LittleTestCreator.Console.csproj
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>
36 changes: 0 additions & 36 deletions LittleTestCreator.Console/Properties/AssemblyInfo.cs

This file was deleted.

10 changes: 0 additions & 10 deletions LittleTestCreator.Console/packages.config

This file was deleted.

12 changes: 6 additions & 6 deletions LittleTestCreator.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29613.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LittleTestCreator.Console", "LittleTestCreator.Console\LittleTestCreator.Console.csproj", "{11715662-7239-4A09-820B-12D902EB1C1F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LittleTestCreator.Shared", "LittleTestCreator.Shared\LittleTestCreator.Shared.csproj", "{A5100487-E086-4A1F-BC09-8AC05E62B59A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LittleTestCreator.InputConverter.OSConcepts", "LittleTestCreator.InputConverter.OSConcepts\LittleTestCreator.InputConverter.OSConcepts.csproj", "{CFCCBBAF-1475-43D0-BBC2-DC428FE064C8}"
Expand All @@ -22,16 +20,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LittleTestCreator.Console", "LittleTestCreator.Console\LittleTestCreator.Console.csproj", "{944B8FCE-1C66-46E7-A4D2-C243F55D8FA6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{11715662-7239-4A09-820B-12D902EB1C1F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11715662-7239-4A09-820B-12D902EB1C1F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11715662-7239-4A09-820B-12D902EB1C1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11715662-7239-4A09-820B-12D902EB1C1F}.Release|Any CPU.Build.0 = Release|Any CPU
{A5100487-E086-4A1F-BC09-8AC05E62B59A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5100487-E086-4A1F-BC09-8AC05E62B59A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5100487-E086-4A1F-BC09-8AC05E62B59A}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -56,6 +52,10 @@ Global
{65E50333-AD5C-4CB9-961B-FAC89F0E1BA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{65E50333-AD5C-4CB9-961B-FAC89F0E1BA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{65E50333-AD5C-4CB9-961B-FAC89F0E1BA8}.Release|Any CPU.Build.0 = Release|Any CPU
{944B8FCE-1C66-46E7-A4D2-C243F55D8FA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{944B8FCE-1C66-46E7-A4D2-C243F55D8FA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{944B8FCE-1C66-46E7-A4D2-C243F55D8FA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{944B8FCE-1C66-46E7-A4D2-C243F55D8FA6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 1baf4c2

Please sign in to comment.