Skip to content

Commit

Permalink
remove dependencies + build for netstandard 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidroth committed Aug 18, 2020
1 parent de891fe commit 12bdc8b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
9 changes: 4 additions & 5 deletions net-core/Ical.Net.CoreUnitTests/Ical.Net.CoreUnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\IcalNetStrongnameKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="NUnit" Version="3.7.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0-alpha1" />
<PackageReference Include="System.ValueTuple" Version="4.3.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Ical.Net\Ical.Net.csproj" />
Expand Down
22 changes: 15 additions & 7 deletions net-core/Ical.Net/Ical.Net.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFrameworks>netstandard1.3;net46</TargetFrameworks>
<Version>4.1.8</Version>
<Authors>Rian Stockbower, Douglas Day</Authors>
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
<Version>5.0.0</Version>
<Authors>Rian Stockbower, Douglas Day &amp; Contributors</Authors>
<Company />
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\IcalNetStrongnameKey.snk</AssemblyOriginatorKeyFile>
<DebugSymbols Condition=" '$(TargetFramework)' == 'net46' ">true</DebugSymbols>
<DebugType Condition=" '$(TargetFramework)' == 'net46' ">full</DebugType>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<PackageId>Fusonic.Ical.Net</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile>license.md</PackageLicenseFile>
<Description>An iCalendar (RFC 5545) control library. See https://github.com/rianjs/ical.net for details.</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\Ical.Net.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NodaTime" Version="2.0.2" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\license.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions net-core/PerfTests/PerfTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet.Core" Version="0.10.10" />
<PackageReference Include="BenchmarkDotNet.Core" Version="0.10.14" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 12bdc8b

Please sign in to comment.