Skip to content

Commit

Permalink
chore: fix nullable problem
Browse files Browse the repository at this point in the history
  • Loading branch information
RayWangQvQ committed Apr 3, 2022
1 parent f008cb5 commit bc89ec8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/Ray.BiliBiliTool.Console/BiliBiliToolHostedService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private void LogAppInfo()
typeof(Program).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion,
Global.HostingEnvironment.EnvironmentName,
Environment.NewLine,
Constants.SourceCodeUrl
Constants.SourceCodeUrl + Environment.NewLine
);
//_logger.LogInformation("【当前IP】{ip} ", IpHelper.GetIp());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit bc89ec8

Please sign in to comment.