Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
myproject
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
叶海龙
myproject
Commits
9e3cdcce
Commit
9e3cdcce
authored
Feb 19, 2019
by
叶海龙
Browse files
Options
Browse Files
Download
Plain Diff
s
parents
609bfec3
9c68448a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
0 deletions
+60
-0
Program.cs
myProject/Program.cs
+10
-0
Program.cs.orig
myProject/Program.cs.orig
+50
-0
No files found.
myProject/Program.cs
View file @
9e3cdcce
...
...
@@ -39,5 +39,15 @@ namespace myProject
{
}
public
void
update
()
{
}
public
void
delete1
()
{
}
}
}
myProject/Program.cs.orig
0 → 100644
View file @
9e3cdcce
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace myProject
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
public void GetMessage()
{
return;
}
public void GetStatus()
{
if ("a".Equals("a"))
{
return;
}
}
<<<<<<< HEAD
public void update()
{
}
=======
public void add()
{
}
>>>>>>> m101_bugfix
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment