Skip to content

Commit 7caff10

Browse files
committed
Init
1 parent 6daa727 commit 7caff10

File tree

5 files changed

+99
-0
lines changed

5 files changed

+99
-0
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
.idea/
2+
# Common IntelliJ Platform excludes
3+
4+
# User specific
5+
**/.idea/**/workspace.xml
6+
**/.idea/**/tasks.xml
7+
**/.idea/shelf/*
8+
**/.idea/dictionaries
9+
10+
# Sensitive or high-churn files
11+
**/.idea/**/dataSources/
12+
**/.idea/**/dataSources.ids
13+
**/.idea/**/dataSources.xml
14+
**/.idea/**/dataSources.local.xml
15+
**/.idea/**/sqlDataSources.xml
16+
**/.idea/**/dynamic.xml
17+
18+
# Rider
19+
# Rider auto-generates .iml files, and contentModel.xml
20+
**/.idea/**/*.iml
21+
**/.idea/**/contentModel.xml
22+
**/.idea/**/modules.xml
23+
.idea/
24+
25+
*.suo
26+
*.user
27+
.vs/
28+
[Bb]in/
29+
[Oo]bj/
30+
_UpgradeReport_Files/
31+
#[Pp]ackages/
32+
Logs/
33+
Thumbs.db
34+
Desktop.ini
35+
.DS_Store
36+
Publish/
37+
NoGit/
38+
logs/
39+
40+
*.mbtiles
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataStructures", "src\DataStructures\DataStructures.csproj", "{836EFA07-0B9B-4AC1-AC0E-A9EC75D35D3E}"
4+
EndProject
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Algorithms", "src\Algorithms\Algorithms.csproj", "{883ADE4C-73FA-4A67-9AE9-2CFE22D54A61}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{836EFA07-0B9B-4AC1-AC0E-A9EC75D35D3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{836EFA07-0B9B-4AC1-AC0E-A9EC75D35D3E}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{836EFA07-0B9B-4AC1-AC0E-A9EC75D35D3E}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{836EFA07-0B9B-4AC1-AC0E-A9EC75D35D3E}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{883ADE4C-73FA-4A67-9AE9-2CFE22D54A61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{883ADE4C-73FA-4A67-9AE9-2CFE22D54A61}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{883ADE4C-73FA-4A67-9AE9-2CFE22D54A61}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{883ADE4C-73FA-4A67-9AE9-2CFE22D54A61}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
EndGlobal

TODO.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Example of TODO.md
2+
3+
This is an example of TODO.md
4+
5+
View the raw content of this file to understand the format.
6+
7+
### Todo
8+
9+
- [ ] Work on the website ~3d #feat @john 2020-03-20
10+
- [ ] Fix the homepage ~1d #bug @jane
11+
- [ ] Sub-task or description
12+
13+
### In Progress
14+
15+
- [ ] Work on Github Repo [JIRA-345]
16+
17+
### Done ✓
18+
19+
- [x] Create my first TODO.md

src/Algorithms/Algorithms.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
</Project>

0 commit comments

Comments
 (0)