Skip to content

Commit

Permalink
Multiple target frameworks update
Browse files Browse the repository at this point in the history
  • Loading branch information
caunt committed Jun 15, 2020
1 parent 86dd67e commit 7a61942
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
mono_crash.*

# Build results
[Bb]uild/
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
Expand Down
42 changes: 40 additions & 2 deletions Source/PromQL.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,45 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>
netstandard1.0;
netstandard1.1;
netstandard1.2;
netstandard1.3;
netstandard1.4;
netstandard1.5;
netstandard1.6;
netstandard2.0;
netstandard2.1;
netcoreapp1.0;
netcoreapp1.1;
netcoreapp2.0;
netcoreapp2.1;
netcoreapp2.2;
netcoreapp3.0;
netcoreapp3.1;
<!--net11;
net20;
net35;-->
net40;
<!--net403;-->
net45;
net451;
net452;
net46;
net461;
net462;
net47;
net471;
net472;
net48;
</TargetFrameworks>
<Version>0.1</Version>
<AddSyntheticProjectReferencesForSolutionDependencies>false</AddSyntheticProjectReferencesForSolutionDependencies>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>../Build/</OutputPath>
</PropertyGroup>

</Project>

0 comments on commit 7a61942

Please sign in to comment.