Build tidyups
This commit is contained in:
parent
1f10ebc836
commit
b49f5e257a
@ -1,8 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@ -32,7 +32,7 @@ namespace Ben.Demystifier.Test
|
||||
var s = EnhancedStackTrace.GetMethodDisplayString(sf.GetMethod());
|
||||
Assert.True(true, "Does not throw exception when diagnosing generic method display string.");
|
||||
}
|
||||
catch (Exception ioe)
|
||||
catch (Exception)
|
||||
{
|
||||
Assert.True(false, "Must not throw an exception when diagnosing generic method display string.");
|
||||
}
|
||||
|
||||
@ -19,7 +19,7 @@ namespace Ben.Demystifier.Test
|
||||
}
|
||||
}
|
||||
|
||||
public void Throw(Generic<(int a, string b)>.Nested nested)
|
||||
private void Throw(Generic<(int a, string b)>.Nested nested)
|
||||
{
|
||||
throw null;
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"publicReleaseRefSpec": [
|
||||
"^refs/heads/master$", // we release out of master
|
||||
"^refs/heads/dev$", // we release out of develop
|
||||
|
||||
Loading…
Reference in New Issue
Block a user