添加新项目

master
bicijinlian 2 years ago
parent 43bb5c282a
commit c0d79918fc

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

@ -0,0 +1,10 @@
namespace LogStudy.EventLog.Next
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}

@ -76,7 +76,7 @@ void UseCustomListener2()
//使用系统监听器
void UseSystemListener()
{
var source = new TraceSource("System.ListenerTraceLog", SourceLevels.All);
var source = new TraceSource("System-ListenerTraceLog", SourceLevels.All);
source.Listeners.Clear();
source.Listeners.Add(new ConsoleTraceListener());

@ -24,6 +24,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogStudy.EventLog", "LogStu
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogStudy.DiagnosticLog", "LogStudy.DiagnosticLog\LogStudy.DiagnosticLog.csproj", "{73AC3F84-DC11-4F53-A729-0EA09E124E6E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LogStudy.EventLog.Next", "LogStudy.EventLog.Next\LogStudy.EventLog.Next.csproj", "{D77E4B1E-D839-446B-AB96-46CC5E07D36F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -50,6 +52,10 @@ Global
{73AC3F84-DC11-4F53-A729-0EA09E124E6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{73AC3F84-DC11-4F53-A729-0EA09E124E6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{73AC3F84-DC11-4F53-A729-0EA09E124E6E}.Release|Any CPU.Build.0 = Release|Any CPU
{D77E4B1E-D839-446B-AB96-46CC5E07D36F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D77E4B1E-D839-446B-AB96-46CC5E07D36F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D77E4B1E-D839-446B-AB96-46CC5E07D36F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D77E4B1E-D839-446B-AB96-46CC5E07D36F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -59,6 +65,7 @@ Global
{3D1FA013-7BAC-4D62-B35B-8B444DB7FE8C} = {353B9475-1064-473D-B3EE-CF3A9BBA4102}
{372EA389-4C91-4B05-8270-86788D48F45D} = {78E9B0D7-537A-4791-BE80-E2BA04D8A5AA}
{73AC3F84-DC11-4F53-A729-0EA09E124E6E} = {D91AB187-F922-47DE-87ED-D3785F4E8D7B}
{D77E4B1E-D839-446B-AB96-46CC5E07D36F} = {78E9B0D7-537A-4791-BE80-E2BA04D8A5AA}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4D9A3A36-98D0-498C-B78A-2E5CFC5195AC}

Loading…
Cancel
Save