-
Notifications
You must be signed in to change notification settings - Fork 933
Run tests on .NET 6 #2951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run tests on .NET 6 #2951
Changes from all commits
0aff1b2
b8bc108
b81d814
bf703b0
5924520
ee5265e
67b560b
be40247
8a54a97
8dc5ed2
1cba19d
fd25bbb
7d8f3c9
8335277
f33ab90
94e1676
7182b8d
786c1bc
e01feea
4b25ff9
168c9e7
fa4042e
625718f
90c3663
28b3747
71d7b67
951a07a
21e6fbc
038ec6c
fbcb9d6
73dfddd
8a70f1f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ csharpasyncgenerator.commandline/ | |
gitreleasemanager/ | ||
obj/ | ||
microsoft.* | ||
netstandard.* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,18 +13,26 @@ | |
<FileVersion Condition="'$(VersionSuffix)' != '' AND '$(BuildNumber)' != ''">$(VersionPrefix).$(BuildNumber)</FileVersion> | ||
<FileVersion Condition="'$(FileVersion)' == ''">$(VersionPrefix).0</FileVersion> | ||
|
||
<NhAppTargetFrameworks Condition ="$(NhAppTargetFrameworks) == ''">net461;netcoreapp2.0</NhAppTargetFrameworks> | ||
<NhAppTargetFrameworks Condition ="$(NhAppTargetFrameworks) == ''">net461;net6.0</NhAppTargetFrameworks> | ||
<NhLibTargetFrameworks Condition ="$(NhLibTargetFrameworks) == ''">net461;netcoreapp2.0;netstandard2.0</NhLibTargetFrameworks> | ||
<NhNetFx>false</NhNetFx> | ||
<NhNetFx Condition="$(TargetFramework.StartsWith('net4'))">true</NhNetFx> | ||
<DefineConstants Condition="$(NhNetFx) AND $(NhVbNet) == ''" >NETFX;$(DefineConstants)</DefineConstants> | ||
<!-- Visual Basic requires to use coma (,) as a separator, other project types - semicolon (;) --> | ||
<DefineConstants Condition="$(NhNetFx) AND '$(MSBuildProjectExtension)' != '.vbproj'">NETFX;$(DefineConstants)</DefineConstants> | ||
<DefineConstants Condition="$(NhNetFx) AND '$(MSBuildProjectExtension)' == '.vbproj'">NETFX,$(DefineConstants)</DefineConstants> | ||
|
||
<Product>NHibernate</Product> | ||
<Company>NHibernate.info</Company> | ||
<Copyright>Licensed under LGPL.</Copyright> | ||
<Authors>NHibernate community, Hibernate community</Authors> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
|
||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<TreatSpecificWarningsAsErrors /> | ||
|
||
<DisableImplicitPackageTargetFallback>True</DisableImplicitPackageTargetFallback> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(IsPackable)' == 'True'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. :-( There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bahusoid. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be fixed here: #3125 |
||
<PackageProjectUrl>https://nhibernate.info</PackageProjectUrl> | ||
<PackageIconUrl>https://raw.githubusercontent.com/nhibernate/nhibernate-core/master/logo/NHibernate-NuGet.png</PackageIconUrl> | ||
<PackageIcon>NHibernate-NuGet.png</PackageIcon> | ||
|
@@ -35,11 +43,6 @@ | |
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
|
||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<TreatSpecificWarningsAsErrors /> | ||
|
||
<DisableImplicitPackageTargetFallback>True</DisableImplicitPackageTargetFallback> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" /> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "6.0.101", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.