Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
fix: correct project naming
Browse files Browse the repository at this point in the history
  • Loading branch information
dollannn committed Apr 6, 2024
1 parent aa35a57 commit 6d92608
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build ${{ env.PROJECT_PATH }} -c CS2Multi1v1 -o ${{ env.OUTPUT_PATH }}
run: dotnet build ${{ env.PROJECT_PATH }} -c CS2-Multi-1v1 -o ${{ env.OUTPUT_PATH }}

publish:
if: github.event_name == 'push'
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build ${{ env.PROJECT_PATH }} -c CS2Multi1v1 -o ${{ env.OUTPUT_PATH }}
run: dotnet build ${{ env.PROJECT_PATH }} -c CS2-Multi-1v1 -o ${{ env.OUTPUT_PATH }}
- name: Clean files
run: |
rm -f \
Expand Down
45 changes: 23 additions & 22 deletions CS2Multi1v1.csproj → CS2-Multi-1v1.csproj
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateDependencyFile>false</GenerateDependencyFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.203">
<PrivateAssets>none</PrivateAssets>
<ExcludeAssets>runtime</ExcludeAssets>
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>CS2Multi1v1</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateDependencyFile>false</GenerateDependencyFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.203">
<PrivateAssets>none</PrivateAssets>
<ExcludeAssets>runtime</ExcludeAssets>
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="lang\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

</Project>
12 changes: 6 additions & 6 deletions CS2-Multi-1v1.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CS2Multi1v1", "CS2Multi1v1.csproj", "{F9B50E0C-648A-4510-AD17-0259259198F8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CS2Multi1v1", "CS2Multi1v1.csproj", "{DF498120-A281-4C6C-B55C-A508205040A2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F9B50E0C-648A-4510-AD17-0259259198F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F9B50E0C-648A-4510-AD17-0259259198F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F9B50E0C-648A-4510-AD17-0259259198F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F9B50E0C-648A-4510-AD17-0259259198F8}.Release|Any CPU.Build.0 = Release|Any CPU
{DF498120-A281-4C6C-B55C-A508205040A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DF498120-A281-4C6C-B55C-A508205040A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DF498120-A281-4C6C-B55C-A508205040A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DF498120-A281-4C6C-B55C-A508205040A2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {836F745F-11F8-4171-B7EF-BDC8E7351A80}
SolutionGuid = {727C4041-5873-4FE2-82B8-514FD04FF40C}
EndGlobalSection
EndGlobal

0 comments on commit 6d92608

Please sign in to comment.