Skip to content

Commit

Permalink
Consolidate .csproj files
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitrietataru committed May 30, 2024
1 parent ef3b2d8 commit c77c97d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Ace.CSharp.Time/Ace.CSharp.Time.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>disable</ImplicitUsings>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>AceCSharp.Time</PackageId>
Expand Down
1 change: 1 addition & 0 deletions src/Ace.CSharp.Time/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global using System;
3 changes: 2 additions & 1 deletion src/tests/Ace.CSharp.Time.Tests/Ace.CSharp.Time.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>

<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>disable</ImplicitUsings>

<PackageId>AceCSharp.Time.Tests</PackageId>
<Version>1.0.1</Version>
Expand Down
1 change: 1 addition & 0 deletions src/tests/Ace.CSharp.Time.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
global using FluentAssertions;
global using System;
global using Xunit;

0 comments on commit c77c97d

Please sign in to comment.