Skip to content

Commit 68520ee

Browse files
committed
1 parent 48aebe7 commit 68520ee

File tree

11 files changed

+20
-35
lines changed

11 files changed

+20
-35
lines changed

Directory.Build.props

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Project>
2+
<PropertyGroup>
3+
<TargetFramework>net5.0</TargetFramework>
4+
<Nullable>enable</Nullable>
5+
<PackageProjectUrl>https://github.com/enowars/EnoEngine</PackageProjectUrl>
6+
<RepositoryUrl>https://github.com/enowars/EnoEngine</RepositoryUrl>
7+
<Company>ENOFLAG</Company>
8+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
9+
<EmbedAllSources>true</EmbedAllSources>
10+
<IncludeSymbols>true</IncludeSymbols>
11+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
12+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
13+
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
14+
<AssemblyVersion>0.0.9.0</AssemblyVersion>
15+
<FileVersion>0.0.9.0</FileVersion>
16+
<Version>0.0.9.0</Version>
17+
</PropertyGroup>
18+
</Project>

DummyChecker/DummyChecker.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
54
</PropertyGroup>
65

76
<ItemGroup>

EnoChecker/EnoChecker.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
6-
<Nullable>enable</Nullable>
74
</PropertyGroup>
85

96
<ItemGroup>

EnoCore/EnoCore.csproj

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<PackageProjectUrl>https://github.com/enowars/EnoEngine</PackageProjectUrl>
7-
<RepositoryUrl>https://github.com/enowars/EnoEngine</RepositoryUrl>
8-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
9-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
10-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
11-
<IncludeSymbols>true</IncludeSymbols>
12-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
13-
<Version>0.0.8</Version>
14-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
154
</PropertyGroup>
165

176
<ItemGroup>

EnoDatabase/EnoDatabase.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
74
</PropertyGroup>
85

96
<ItemGroup>

EnoEngine.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnoFlagSink", "EnoFlagSink\
2525
EndProject
2626
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D1345D92-C3B5-4D2C-B3C1-CF80111B1B16}"
2727
ProjectSection(SolutionItems) = preProject
28+
Directory.Build.props = Directory.Build.props
2829
ENOWARS.ruleset = ENOWARS.ruleset
2930
stylecop.json = stylecop.json
3031
EndProjectSection
3132
EndProject
3233
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnoChecker", "EnoChecker\EnoChecker.csproj", "{40DCE6CF-85BE-440C-B62B-4FC075DD8843}"
3334
EndProject
34-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleChecker", "SampleChecker\SampleChecker.csproj", "{F9A0382D-76C6-48D3-A0CA-CD5E290AD8FB}"
35+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleChecker", "SampleChecker\SampleChecker.csproj", "{F9A0382D-76C6-48D3-A0CA-CD5E290AD8FB}"
3536
EndProject
3637
Global
3738
GlobalSection(SolutionConfigurationPlatforms) = preSolution

EnoEngine/EnoEngine.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net5.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
74
</PropertyGroup>
85
<ItemGroup>
96
<AdditionalFiles Include="..\stylecop.json" Link="stylecop.json" />

EnoFlagSink/EnoFlagSink.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
6-
<Nullable>enable</Nullable>
7-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
8-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
95
</PropertyGroup>
106

117
<ItemGroup>

EnoLauncher/EnoLauncher.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
6-
<Nullable>enable</Nullable>
7-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
85
</PropertyGroup>
96

107
<ItemGroup>

FlagShooter/FlagShooter.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
6-
<Nullable>enable</Nullable>
7-
<CodeAnalysisRuleSet>../ENOWARS.ruleset</CodeAnalysisRuleSet>
85
</PropertyGroup>
96

107
<ItemGroup>

0 commit comments

Comments
 (0)