Skip to content

Commit

Permalink
feat: add more more csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonAura committed Oct 21, 2023
1 parent 80d9d56 commit 8ce35c7
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 19 deletions.
17 changes: 17 additions & 0 deletions logic/GameEngine/GameEngine.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FrameRateTask" Version="1.2.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Preparation\Preparation.csproj" />
</ItemGroup>

</Project>
17 changes: 17 additions & 0 deletions playback/Playback/Playback.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.23.3" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\dependency\proto\Protos.csproj" />
</ItemGroup>

</Project>
2 changes: 0 additions & 2 deletions playback/Program.cs

This file was deleted.

10 changes: 0 additions & 10 deletions playback/playback.csproj

This file was deleted.

14 changes: 7 additions & 7 deletions playback/playback.sln
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33712.159
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "playback", "playback.csproj", "{0E333BB5-B61A-42CE-A35B-098A1E7D67B3}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Playback", "Playback\Playback.csproj", "{A5D4F29B-1D67-45D5-BDD8-5BF9839EC374}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0E333BB5-B61A-42CE-A35B-098A1E7D67B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E333BB5-B61A-42CE-A35B-098A1E7D67B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E333BB5-B61A-42CE-A35B-098A1E7D67B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E333BB5-B61A-42CE-A35B-098A1E7D67B3}.Release|Any CPU.Build.0 = Release|Any CPU
{A5D4F29B-1D67-45D5-BDD8-5BF9839EC374}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5D4F29B-1D67-45D5-BDD8-5BF9839EC374}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5D4F29B-1D67-45D5-BDD8-5BF9839EC374}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5D4F29B-1D67-45D5-BDD8-5BF9839EC374}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {44A41683-EF5E-414F-8E8D-322E30F829F6}
SolutionGuid = {FBBF6C99-33A2-4B07-8759-BBDBA39A29C7}
EndGlobalSection
EndGlobal

0 comments on commit 8ce35c7

Please sign in to comment.