fixed package dependency capitalization

This commit is contained in:
alterNERDtive 2022-05-31 20:59:23 +02:00
parent 1f0bf1fc0b
commit a5b754cdc9
9 changed files with 13 additions and 37 deletions

View file

@ -8,7 +8,7 @@ on:
jobs: jobs:
build: build:
name: Build EDNA name: Build EDNA
runs-on: ubuntu-latest runs-on: windows-latest
permissions: permissions:
contents: write contents: write

View file

@ -6,7 +6,7 @@ on:
jobs: jobs:
build: build:
name: Test EDNA name: Test EDNA
runs-on: ubuntu-latest runs-on: windows-latest
permissions: permissions:
contents: write contents: write

6
Directory.Build.targets Normal file
View file

@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View file

@ -1,25 +0,0 @@
<Project>
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<!-- StyleCop Analyzers configuration -->
<PropertyGroup>
<CodeAnalysisRuleSet>$(SolutionDir)StyleCop.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers.Error" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.CSharp.Async.Rules" Version="6.1.41">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<AdditionalFiles Include="$(SolutionDir)stylecop.json" Link="stylecop.json" />
</ItemGroup>
</Project>

View file

@ -2,7 +2,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks> <TargetFrameworks>net48;net6.0</TargetFrameworks>
<nullable>enable</nullable>
<PackageId>alterNERDtive.EDNA</PackageId> <PackageId>alterNERDtive.EDNA</PackageId>
<Version>0.0.1</Version> <Version>0.0.1</Version>
<Company>alterNERDtive</Company> <Company>alterNERDtive</Company>
@ -20,8 +19,8 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\EDSM\EDSM.csproj" PrivateAssets="All" /> <ProjectReference Include="..\Edsm\Edsm.csproj" PrivateAssets="All" />
<ProjectReference Include="..\EDTS\EDTS.csproj" PrivateAssets="All" /> <ProjectReference Include="..\Edts\Edts.csproj" PrivateAssets="All" />
<ProjectReference Include="..\Spansh\Spansh.csproj" PrivateAssets="All" /> <ProjectReference Include="..\Spansh\Spansh.csproj" PrivateAssets="All" />
</ItemGroup> </ItemGroup>

View file

@ -2,7 +2,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks> <TargetFrameworks>net48;net6.0</TargetFrameworks>
<nullable>enable</nullable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -2,7 +2,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks> <TargetFrameworks>net48;net6.0</TargetFrameworks>
<nullable>enable</nullable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -2,7 +2,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks> <TargetFrameworks>net48;net6.0</TargetFrameworks>
<nullable>enable</nullable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -2,7 +2,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks> <TargetFrameworks>net48;net6.0</TargetFrameworks>
<nullable>enable</nullable>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
@ -18,9 +17,9 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\EDNA\EDNA.csproj" /> <ProjectReference Include="..\Edna\Edna.csproj" />
<ProjectReference Include="..\EDSM\EDSM.csproj" /> <ProjectReference Include="..\Edsm\Edsm.csproj" />
<ProjectReference Include="..\EDTS\EDTS.csproj" /> <ProjectReference Include="..\Edts\Edts.csproj" />
<ProjectReference Include="..\Spansh\Spansh.csproj" /> <ProjectReference Include="..\Spansh\Spansh.csproj" />
</ItemGroup> </ItemGroup>