Skip to content

Commit

Permalink
Merge pull request #53 from dotnet-campus/t/lvyi/debugger
Browse files Browse the repository at this point in the history
Remove Debugger.Launch
  • Loading branch information
lindexi committed Nov 27, 2019
2 parents 073d391 + d077168 commit 222a34c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/Version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>0.1.16257-alpha</Version>
<Version>0.1.17751-alpha</Version>
</PropertyGroup>
</Project>
8 changes: 5 additions & 3 deletions dotnetCampus.SourceYard.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2035
# Visual Studio Version 16
VisualStudioVersion = 16.0.29503.13
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnetCampus.SourceYard", "src\dotnetCampus.SourceYard\dotnetCampus.SourceYard.csproj", "{E0E10F18-8AB9-4DC5-A68C-17726D619F24}"
EndProject
Expand All @@ -11,11 +11,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.gitattributes = .gitattributes
.gitignore = .gitignore
Directory.Build.props = Directory.Build.props
LICENSE = LICENSE
README.md = README.md
build\Version.props = build\Version.props
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnetCampus.SourceYard.Tests", "tests\dotnetCampus.SourceYard.Tests\dotnetCampus.SourceYard.Tests.csproj", "{40CA62ED-6DFF-4A65-93D4-A91AB5DCF9DE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnetCampus.SourceYard.Tests", "tests\dotnetCampus.SourceYard.Tests\dotnetCampus.SourceYard.Tests.csproj", "{40CA62ED-6DFF-4A65-93D4-A91AB5DCF9DE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion src/dotnetCampus.SourceYard/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ private static void Main(string[] args)
private static void RunOptionsAndReturnExitCode(Options options)
{
#if DEBUG
Debugger.Launch();
// Debugger.Launch();
Console.WriteLine(Environment.CommandLine);
#endif
var logger = new Logger();
Expand Down

0 comments on commit 222a34c

Please sign in to comment.