Skip to content

Commit

Permalink
닷넷 버전 업데이트
Browse files Browse the repository at this point in the history
- 콘솔 로그 출력 설정 추가.
  • Loading branch information
leafbird committed Nov 18, 2024
1 parent a927be3 commit a583ea1
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 16 deletions.
2 changes: 1 addition & 1 deletion GameRank.Core/GameRank.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CodeAnalysisRuleSet>..\BaseEnvironment\CodingStyle.ruleset</CodeAnalysisRuleSet>
Expand Down
4 changes: 2 additions & 2 deletions GameRank.Crawler/GameRank.Crawler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
Expand All @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="cs.logging" Version="0.0.11" />
<PackageReference Include="cs.logging" Version="0.0.25" />
<PackageReference Include="DotNetSeleniumExtras.WaitHelpers" Version="3.11.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.12.4" />
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="117.0.5938.4800-beta" />
Expand Down
4 changes: 3 additions & 1 deletion GameRank.Crawler/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ internal class Program
{
private static void Main(string[] args)
{
Log.Initialize(new SimpleFileLogProvider("log.txt"), LogLevelConfig.All);
var logProvider = new SimpleFileLogProvider("log.txt");
logProvider.SetWriteToConsole(true);
Log.Initialize(logProvider, LogLevelConfig.All);
// 1. load config
if (GameRankConfig.TryLoad(args, out var config) == false)
{
Expand Down
6 changes: 3 additions & 3 deletions GameRank.Test/GameRank.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand All @@ -16,8 +16,8 @@
<PackageReference Include="coverlet.collector" Version="3.2.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\GameRank.Core\GameRank.Core.csproj" />
<ItemGroup>
<ProjectReference Include="..\GameRank.Core\GameRank.Core.csproj" />
</ItemGroup>

</Project>
29 changes: 21 additions & 8 deletions GameRankReader.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,33 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameRank.Crawler", "GameRank.Crawler\GameRank.Crawler.csproj", "{DC5E928C-81DA-4F34-876C-C4A2BC48CCC5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GameRank.Crawler", "GameRank.Crawler\GameRank.Crawler.csproj", "{DC5E928C-81DA-4F34-876C-C4A2BC48CCC5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameRank.Core", "GameRank.Core\GameRank.Core.csproj", "{3F9036DC-95F9-4350-8D41-D048CBF62E28}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GameRank.Core", "GameRank.Core\GameRank.Core.csproj", "{3F9036DC-95F9-4350-8D41-D048CBF62E28}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameRank.Test", "GameRank.Test\GameRank.Test.csproj", "{7A0D0728-C624-4D27-B7FD-CB293CBCA15A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GameRank.Test", "GameRank.Test\GameRank.Test.csproj", "{7A0D0728-C624-4D27-B7FD-CB293CBCA15A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{67D927C2-6060-45EB-9510-8E80AD723323}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
config.json = config.Json
config.json = config.json
readme.md = readme.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Resource", "Resource\Resource.csproj", "{F9AB6C38-F686-4999-A7BD-92B2B937FB0C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Resource", "Resource\Resource.csproj", "{F9AB6C38-F686-4999-A7BD-92B2B937FB0C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Workflow", "Workflow", "{1978BABD-8A73-458F-B087-4014A4996360}"
ProjectSection(SolutionItems) = preProject
.github\workflows\crawling.yml = .github\workflows\crawling.yml
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
.github\workflows\nuget.yml = .github\workflows\nuget.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DC5E928C-81DA-4F34-876C-C4A2BC48CCC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DC5E928C-81DA-4F34-876C-C4A2BC48CCC5}.Debug|Any CPU.Build.0 = Debug|Any CPU
Expand All @@ -44,4 +48,13 @@ Global
{F9AB6C38-F686-4999-A7BD-92B2B937FB0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F9AB6C38-F686-4999-A7BD-92B2B937FB0C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{1978BABD-8A73-458F-B087-4014A4996360} = {67D927C2-6060-45EB-9510-8E80AD723323}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DBC99C54-788A-4003-BDF7-0E3208BF0082}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion Resource/Resource.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down

0 comments on commit a583ea1

Please sign in to comment.