Skip to content

Commit 8f6e1d9

Browse files
authored
add Directory.Build.props (#301)
1 parent bd27325 commit 8f6e1d9

File tree

9 files changed

+10
-12
lines changed

9 files changed

+10
-12
lines changed

Directory.Build.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project>
2+
<PropertyGroup>
3+
<Nullable>enable</Nullable>
4+
<InvariantGlobalization>true</InvariantGlobalization>
5+
</PropertyGroup>
6+
</Project>

sandbox/ConsoleApp/ConsoleApp.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<Nullable>enable</Nullable>
65
<TargetFramework>net8.0</TargetFramework>
76
</PropertyGroup>
87

sandbox/Example/Example.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFrameworks>net8.0;</TargetFrameworks>
6-
<Nullable>enable</Nullable>
76
<LangVersion>9</LangVersion>
87
</PropertyGroup>
98

src/TypedSignalR.Client.Attributes/TypedSignalR.Client.Attributes.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>10</LangVersion>
6-
<Nullable>enable</Nullable>
76
<IsPackable>true</IsPackable>
87
<RootNamespace>TypedSignalR.Client</RootNamespace>
98

src/TypedSignalR.Client/TypedSignalR.Client.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<LangVersion>11</LangVersion>
6-
<Nullable>enable</Nullable>
76
<IsPackable>true</IsPackable>
87
<IsRoslynComponent>true</IsRoslynComponent>
98
<IncludeBuildOutput>false</IncludeBuildOutput>

tests/TypedSignalR.Client.Tests.NuGet/TypedSignalR.Client.Tests.NuGet.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<Nullable>enable</Nullable>
76
<IsPackable>false</IsPackable>
87
<IsTestProject>true</IsTestProject>
98
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>

tests/TypedSignalR.Client.Tests.Server/TypedSignalR.Client.Tests.Server.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<Nullable>enable</Nullable>
65
<ImplicitUsings>enable</ImplicitUsings>
76
</PropertyGroup>
87

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
</PropertyGroup>
87

98
</Project>

tests/TypedSignalR.Client.Tests/TypedSignalR.Client.Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<Nullable>enable</Nullable>
76
<IsPackable>false</IsPackable>
87
<IsTestProject>true</IsTestProject>
98
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>

0 commit comments

Comments
 (0)