Skip to content

Commit

Permalink
netcoreapp support
Browse files Browse the repository at this point in the history
  • Loading branch information
jchannon committed Oct 5, 2020
1 parent c359434 commit 6874873
Show file tree
Hide file tree
Showing 13 changed files with 46 additions and 533 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,3 +8,4 @@ repositories.config
[Bb]in/
[Oo]bj/
*.csproj.user
.idea/
81 changes: 9 additions & 72 deletions sample-app/Cafe/Cafe.csproj
@@ -1,72 +1,9 @@
<?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>{93C9E435-6BF0-4A40-98FA-2BDFFF04F506}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Cafe</RootNamespace>
<AssemblyName>Cafe</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Tab\CloseTab.cs" />
<Compile Include="Tab\Exceptions.cs" />
<Compile Include="Tab\MarkDrinksServed.cs" />
<Compile Include="Tab\MarkFoodPrepared.cs" />
<Compile Include="Tab\OpenTab.cs" />
<Compile Include="Tab\PlaceOrder.cs" />
<Compile Include="Tab\MarkFoodServed.cs" />
<Compile Include="Tab\TabAggregate.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Edument.CQRS\Edument.CQRS.csproj">
<Project>{D2BAB57D-225D-4F4C-9410-ED39495A8FE0}</Project>
<Name>Edument.CQRS</Name>
</ProjectReference>
<ProjectReference Include="..\Events\Events.csproj">
<Project>{36635EE7-A3B5-4F39-8AF8-3625F6BBE43D}</Project>
<Name>Events</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Edument.CQRS\Edument.CQRS.csproj" />
<ProjectReference Include="..\Events\Events.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
36 changes: 0 additions & 36 deletions sample-app/Cafe/Properties/AssemblyInfo.cs

This file was deleted.

76 changes: 9 additions & 67 deletions sample-app/CafeReadModels/CafeReadModels.csproj
@@ -1,67 +1,9 @@
<?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>{6F605353-EDF1-4EC1-900C-4C55C105E24C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CafeReadModels</RootNamespace>
<AssemblyName>CafeReadModels</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ChefTodoList.cs" />
<Compile Include="IChefTodoListQueries.cs" />
<Compile Include="IOpenTabQueries.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="OpenTabs.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Edument.CQRS\Edument.CQRS.csproj">
<Project>{D2BAB57D-225D-4F4C-9410-ED39495A8FE0}</Project>
<Name>Edument.CQRS</Name>
</ProjectReference>
<ProjectReference Include="..\Events\Events.csproj">
<Project>{36635EE7-A3B5-4F39-8AF8-3625F6BBE43D}</Project>
<Name>Events</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Events\Events.csproj" />
<ProjectReference Include="..\Edument.CQRS\Edument.CQRS.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
36 changes: 0 additions & 36 deletions sample-app/CafeReadModels/Properties/AssemblyInfo.cs

This file was deleted.

88 changes: 13 additions & 75 deletions sample-app/CafeTests/CafeTests.csproj
@@ -1,75 +1,13 @@
<?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>{FE7E5277-0F2B-4CC8-81B7-87AB78AF0D18}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CafeTests</RootNamespace>
<AssemblyName>CafeTests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework, Version=3.2.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>..\packages\NUnit.3.2.1\lib\net40\nunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TabTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cafe\Cafe.csproj">
<Project>{93C9E435-6BF0-4A40-98FA-2BDFFF04F506}</Project>
<Name>Cafe</Name>
</ProjectReference>
<ProjectReference Include="..\Edument.CQRS\Edument.CQRS.csproj">
<Project>{D2BAB57D-225D-4F4C-9410-ED39495A8FE0}</Project>
<Name>Edument.CQRS</Name>
</ProjectReference>
<ProjectReference Include="..\Events\Events.csproj">
<Project>{36635EE7-A3B5-4F39-8AF8-3625F6BBE43D}</Project>
<Name>Events</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Events\Events.csproj" />
<ProjectReference Include="..\Edument.CQRS\Edument.CQRS.csproj" />
<ProjectReference Include="..\Cafe\Cafe.csproj" />
</ItemGroup>
</Project>
36 changes: 0 additions & 36 deletions sample-app/CafeTests/Properties/AssemblyInfo.cs

This file was deleted.

4 changes: 0 additions & 4 deletions sample-app/CafeTests/packages.config

This file was deleted.

0 comments on commit 6874873

Please sign in to comment.