Skip to content

Commit

Permalink
Switch entry points to netcore20
Browse files Browse the repository at this point in the history
  • Loading branch information
yevhen committed Oct 14, 2017
1 parent e91c28f commit c305518
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
7 changes: 0 additions & 7 deletions Source/Example/Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@
<OutputType>Exe</OutputType>
<StartupObject>Example.Program</StartupObject>
<LangVersion>7.1</LangVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TargetFramework>net461</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TargetFramework>netcoreapp2.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Source/Streamstone.Tests/Streamstone.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<TargetFramework>netcoreapp2.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RootNamespace>Streamstone</RootNamespace>
<LangVersion>7.1</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ExpectedObjects" Version="1.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0-preview-20171012-09" />
<PackageReference Include="NUnit" Version="3.7.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0" />
</ItemGroup>
Expand Down
7 changes: 1 addition & 6 deletions Source/Streamstone/Streamstone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,17 @@

<PropertyGroup>
<LangVersion>7.1</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Authors>Yevhen Bobrov</Authors>
<PackageProjectUrl>http://github.com/yevhen/Streamstone</PackageProjectUrl>
<PackageLicenseUrl>http://github.com/yevhen/Streamstone/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://github.com/yevhen/Streamstone/raw/master/Logo.png</PackageIconUrl>
<PackageTags>event store eventstore eventsourcing event-sourcing CQRS azure table storage stream</PackageTags>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TargetFramework>net461</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TargetFrameworks>netstandard2.0;netstandard1.6</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DocumentationFile>bin\Release\Streamstone.xml</DocumentationFile>
</PropertyGroup>

Expand Down

0 comments on commit c305518

Please sign in to comment.