├── index.html
├── reset.min.css
├── LICENSE
├── main.js
├── style.css
└── .gitignore
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Todo list
6 |
7 |
8 |
9 |
10 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/reset.min.css:
--------------------------------------------------------------------------------
1 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body,html{width:100%;height:100%}body{-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:none;margin:0;padding:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}ol,ul{list-style:none}hr{border:0;height:1px;background:#ccc}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}*{margin:0;padding:0;list-style:none;box-sizing:border-box}html,input,select,textarea,button,a{-webkit-tap-highlight-color:rgba(0,0,0,0)}
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | This is free and unencumbered software released into the public domain.
2 |
3 | Anyone is free to copy, modify, publish, use, compile, sell, or
4 | distribute this software, either in source code form or as a compiled
5 | binary, for any purpose, commercial or non-commercial, and by any
6 | means.
7 |
8 | In jurisdictions that recognize copyright laws, the author or authors
9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
24 | For more information, please refer to
25 |
--------------------------------------------------------------------------------
/main.js:
--------------------------------------------------------------------------------
1 |
2 | var data = (localStorage.getItem('todoList')) ? JSON.parse(localStorage.getItem('todoList')):{
3 | todo: [],
4 | completed: []
5 | };
6 |
7 | renderTodoList();
8 | document.getElementById('add').addEventListener('click', function() {
9 | var value = document.getElementById('item').value;
10 | if (value) {
11 | addItem(value);
12 | }
13 | });
14 |
15 | document.getElementById('item').addEventListener('keydown', function (e) {
16 | var value = this.value;
17 | if ((e.code === 'Enter' || e.code === 'NumpadEnter') && value) {
18 | addItem(value);
19 | }
20 | });
21 |
22 | function addItem (value) {
23 | addItemToDOM(value);
24 | document.getElementById('item').value = '';
25 |
26 | data.todo.push(value);
27 | dataObjectUpdated();
28 | }
29 |
30 | function renderTodoList() {
31 | if (!data.todo.length && !data.completed.length) return;
32 |
33 | for (var i = 0; i < data.todo.length; i++) {
34 | var value = data.todo[i];
35 | addItemToDOM(value);
36 | }
37 |
38 | for (var j = 0; j < data.completed.length; j++) {
39 | var value = data.completed[j];
40 | addItemToDOM(value, true);
41 | }
42 | }
43 |
44 | function dataObjectUpdated() {
45 | localStorage.setItem('todoList', JSON.stringify(data));
46 | }
47 |
48 | function removeItem() {
49 | var item = this.parentNode.parentNode;
50 | var parent = item.parentNode;
51 | var id = parent.id;
52 | var value = item.innerText;
53 |
54 | if (id === 'todo') {
55 | data.todo.splice(data.todo.indexOf(value), 1);
56 | } else {
57 | data.completed.splice(data.completed.indexOf(value), 1);
58 | }
59 | dataObjectUpdated();
60 |
61 | parent.removeChild(item);
62 | }
63 | var removeSVG = '';
64 | var completeSVG = '';
65 |
66 | function completeItem() {
67 | var item = this.parentNode.parentNode;
68 | var parent = item.parentNode;
69 | var id = parent.id;
70 | var value = item.innerText;
71 |
72 | if (id === 'todo') {
73 | data.todo.splice(data.todo.indexOf(value), 1);
74 | data.completed.push(value);
75 | } else {
76 | data.completed.splice(data.completed.indexOf(value), 1);
77 | data.todo.push(value);
78 | }
79 | dataObjectUpdated();
80 | var target = (id === 'todo') ? document.getElementById('completed'):document.getElementById('todo');
81 |
82 | parent.removeChild(item);
83 | target.insertBefore(item, target.childNodes[0]);
84 | }
85 | function addItemToDOM(text, completed) {
86 | var list = (completed) ? document.getElementById('completed'):document.getElementById('todo');
87 |
88 | var item = document.createElement('li');
89 | item.innerText = text;
90 |
91 | var buttons = document.createElement('div');
92 | buttons.classList.add('buttons');
93 |
94 | var remove = document.createElement('button');
95 | remove.classList.add('remove');
96 | remove.innerHTML = removeSVG;
97 |
98 | remove.addEventListener('click', removeItem);
99 |
100 | var complete = document.createElement('button');
101 | complete.classList.add('complete');
102 | complete.innerHTML = completeSVG;
103 |
104 | complete.addEventListener('click', completeItem);
105 |
106 | buttons.appendChild(remove);
107 | buttons.appendChild(complete);
108 | item.appendChild(buttons);
109 |
110 | list.insertBefore(item, list.childNodes[0]);
111 | }
112 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 |
3 | body {
4 | background: #edf0f1;
5 | padding: 80px 0 0 0;
6 | }
7 |
8 | body, input, button {
9 | font-family: 'Roboto', sans-serif;
10 | }
11 |
12 | .noFill {
13 | fill: none;
14 | }
15 |
16 | header {
17 | width: 100%;
18 | height: 80px;
19 |
20 | position: fixed;
21 | padding: 15px;
22 | top: 0;
23 | left: 0;
24 | z-index: 5;
25 |
26 | background: #00c5f7;
27 | box-shadow: 0px 2px 4px rgba(44, 62, 80, 0.15);
28 | border-bottom-right-radius: 10px;
29 | border-bottom-left-radius: 10px;
30 | }
31 |
32 | header input {
33 | width: 100%;
34 | height: 50px;
35 | float: left;
36 | color: #ffffff;
37 | font-size: 15px;
38 | font-weight: 400;
39 | text-indent: 18px;
40 | padding: 0 60px 0 0;
41 | background: rgba(255, 255, 255, 0.2);
42 | border-radius: 5px 25px 25px 5px;
43 | border: 0px;
44 | box-shadow: none;
45 | outline: none;
46 | }
47 |
48 | header input::-webkit-input-placeholder {
49 | color: rgba(255, 255, 255, 0.75);
50 | }
51 |
52 | header input:-moz-input-placeholder {
53 | color: rgba(255, 255, 255, 0.75);
54 | }
55 |
56 | header input::-moz-input-placeholder {
57 | color: rgba(255, 255, 255, 0.75);
58 | }
59 |
60 | header input:-ms-input-placeholder {
61 | color: rgba(255, 255, 255, 0.75);
62 | }
63 |
64 | header button {
65 | width: 50px;
66 | height: 50px;
67 |
68 | position:absolute;
69 | top:15px;
70 | right:15px;
71 | z-index:2;
72 |
73 | border-radius: 25px;
74 | background: #fff;
75 | border: 0px;
76 | box-shadow: none;
77 | outline: none;
78 | cursor: pointer;
79 | }
80 |
81 | header button svg {
82 | width: 16px;
83 | height: 16px;
84 |
85 | position: absolute;
86 | top: 50%;
87 | left: 50%;
88 |
89 | margin: -8px 0 0 -8px;
90 | }
91 |
92 | header button svg .fill {
93 | fill: #25b99a;
94 | }
95 |
96 | .container {
97 | width: 100%;
98 | float: left;
99 | padding: 15px;
100 | }
101 |
102 | ul.todo {
103 | width: 100%;
104 | float: left;
105 | }
106 |
107 | ul.todo li {
108 | width: 100%;
109 | min-height: 50px;
110 | float: left;
111 | font-size: 14px;
112 | font-weight: 500;
113 | color: #444;
114 | line-height: 22px;
115 |
116 | background: #fff;
117 | border-radius: 5px;
118 | position: relative;
119 | box-shadow: 0px 1px 2px rgba(44, 62, 80, 0.10);
120 | margin: 0 0 10px 0;
121 | padding: 14px 100px 14px 14px;
122 | word-break: break-word;
123 | }
124 |
125 | ul.todo li:last-of-type {
126 | margin: 0;
127 | }
128 |
129 | ul.todo li .buttons {
130 | width: 100px;
131 | height: 50px;
132 |
133 | position: absolute;
134 | top: 0;
135 | right: 0;
136 | }
137 |
138 | ul.todo li .buttons button {
139 | width: 50px;
140 | height: 50px;
141 | float: left;
142 | background: none;
143 | position: relative;
144 | border: 0px;
145 | box-shadow: none;
146 | outline: none;
147 | cursor: pointer;
148 | }
149 |
150 | ul.todo li .buttons button:last-of-type:before {
151 | content: '';
152 | width: 1px;
153 | height: 30px;
154 | background: #edf0f1;
155 |
156 | position: absolute;
157 | top: 10px;
158 | left: 0;
159 | }
160 |
161 | ul.todo li .buttons button svg {
162 | width: 22px;
163 | height: 22px;
164 |
165 | position: absolute;
166 | top: 50%;
167 | left: 50%;
168 |
169 | margin: -11px 0 0 -11px;
170 | }
171 |
172 | ul.todo li .buttons button.complete svg {
173 | border-radius: 11px;
174 | border: 1.5px solid #25b99a;
175 |
176 | transition: background 0.2s ease;
177 | }
178 |
179 | ul.todo#completed li .buttons button.complete svg {
180 | background: #25b99a;
181 | border: 0px;
182 | }
183 |
184 | ul.todo:not(#completed) li .buttons button.complete:hover svg {
185 | background: rgba(37, 185, 154, 0.75);
186 | }
187 |
188 | ul.todo:not(#completed) li .buttons button.complete:hover svg .fill {
189 | fill: #fff;
190 | }
191 |
192 | ul.todo#completed li .buttons button.complete svg .fill {
193 | fill: #fff;
194 | }
195 |
196 | ul.todo li .buttons button svg .fill {
197 | transition: fill 0.2s ease;
198 | }
199 |
200 | ul.todo li .buttons button.remove svg .fill {
201 | fill: #c0cecb;
202 | }
203 |
204 | ul.todo li .buttons button.remove:hover svg .fill {
205 | fill: #e85656;
206 | }
207 |
208 | ul.todo li .buttons button.complete svg .fill {
209 | fill: #25b99a;
210 | }
211 |
212 | ul.todo#completed {
213 | position: relative;
214 | padding: 60px 0 0 0;
215 | }
216 |
217 | ul.todo#completed:before {
218 | content: '';
219 | width: 150px;
220 | height: 1px;
221 | background: #d8e5e0;
222 |
223 | position: absolute;
224 | top: 30px;
225 | left: 50%;
226 |
227 | margin: 0 0 0 -75px;
228 | }
229 |
230 | ul.todo#todo:empty:after {
231 | content: 'You have nothing to-do!';
232 | margin: 15px 0 0 0;
233 | }
234 |
235 | ul.todo#completed:empty:after {
236 | content: 'You have yet to complete any tasks.';
237 | }
238 |
239 | ul.todo#todo:after,
240 | ul.todo#completed:after {
241 | width: 100%;
242 | display: block;
243 | text-align: center;
244 | font-size: 12px;
245 | color: #aaa;
246 | }
247 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.rsuser
8 | *.suo
9 | *.user
10 | *.userosscache
11 | *.sln.docstates
12 |
13 | # User-specific files (MonoDevelop/Xamarin Studio)
14 | *.userprefs
15 |
16 | # Mono auto generated files
17 | mono_crash.*
18 |
19 | # Build results
20 | [Dd]ebug/
21 | [Dd]ebugPublic/
22 | [Rr]elease/
23 | [Rr]eleases/
24 | x64/
25 | x86/
26 | [Ww][Ii][Nn]32/
27 | [Aa][Rr][Mm]/
28 | [Aa][Rr][Mm]64/
29 | bld/
30 | [Bb]in/
31 | [Oo]bj/
32 | [Ll]og/
33 | [Ll]ogs/
34 |
35 | # Visual Studio 2015/2017 cache/options directory
36 | .vs/
37 | # Uncomment if you have tasks that create the project's static files in wwwroot
38 | #wwwroot/
39 |
40 | # Visual Studio 2017 auto generated files
41 | Generated\ Files/
42 |
43 | # MSTest test Results
44 | [Tt]est[Rr]esult*/
45 | [Bb]uild[Ll]og.*
46 |
47 | # NUnit
48 | *.VisualState.xml
49 | TestResult.xml
50 | nunit-*.xml
51 |
52 | # Build Results of an ATL Project
53 | [Dd]ebugPS/
54 | [Rr]eleasePS/
55 | dlldata.c
56 |
57 | # Benchmark Results
58 | BenchmarkDotNet.Artifacts/
59 |
60 | # .NET Core
61 | project.lock.json
62 | project.fragment.lock.json
63 | artifacts/
64 |
65 | # ASP.NET Scaffolding
66 | ScaffoldingReadMe.txt
67 |
68 | # StyleCop
69 | StyleCopReport.xml
70 |
71 | # Files built by Visual Studio
72 | *_i.c
73 | *_p.c
74 | *_h.h
75 | *.ilk
76 | *.meta
77 | *.obj
78 | *.iobj
79 | *.pch
80 | *.pdb
81 | *.ipdb
82 | *.pgc
83 | *.pgd
84 | *.rsp
85 | *.sbr
86 | *.tlb
87 | *.tli
88 | *.tlh
89 | *.tmp
90 | *.tmp_proj
91 | *_wpftmp.csproj
92 | *.log
93 | *.tlog
94 | *.vspscc
95 | *.vssscc
96 | .builds
97 | *.pidb
98 | *.svclog
99 | *.scc
100 |
101 | # Chutzpah Test files
102 | _Chutzpah*
103 |
104 | # Visual C++ cache files
105 | ipch/
106 | *.aps
107 | *.ncb
108 | *.opendb
109 | *.opensdf
110 | *.sdf
111 | *.cachefile
112 | *.VC.db
113 | *.VC.VC.opendb
114 |
115 | # Visual Studio profiler
116 | *.psess
117 | *.vsp
118 | *.vspx
119 | *.sap
120 |
121 | # Visual Studio Trace Files
122 | *.e2e
123 |
124 | # TFS 2012 Local Workspace
125 | $tf/
126 |
127 | # Guidance Automation Toolkit
128 | *.gpState
129 |
130 | # ReSharper is a .NET coding add-in
131 | _ReSharper*/
132 | *.[Rr]e[Ss]harper
133 | *.DotSettings.user
134 |
135 | # TeamCity is a build add-in
136 | _TeamCity*
137 |
138 | # DotCover is a Code Coverage Tool
139 | *.dotCover
140 |
141 | # AxoCover is a Code Coverage Tool
142 | .axoCover/*
143 | !.axoCover/settings.json
144 |
145 | # Coverlet is a free, cross platform Code Coverage Tool
146 | coverage*.json
147 | coverage*.xml
148 | coverage*.info
149 |
150 | # Visual Studio code coverage results
151 | *.coverage
152 | *.coveragexml
153 |
154 | # NCrunch
155 | _NCrunch_*
156 | .*crunch*.local.xml
157 | nCrunchTemp_*
158 |
159 | # MightyMoose
160 | *.mm.*
161 | AutoTest.Net/
162 |
163 | # Web workbench (sass)
164 | .sass-cache/
165 |
166 | # Installshield output folder
167 | [Ee]xpress/
168 |
169 | # DocProject is a documentation generator add-in
170 | DocProject/buildhelp/
171 | DocProject/Help/*.HxT
172 | DocProject/Help/*.HxC
173 | DocProject/Help/*.hhc
174 | DocProject/Help/*.hhk
175 | DocProject/Help/*.hhp
176 | DocProject/Help/Html2
177 | DocProject/Help/html
178 |
179 | # Click-Once directory
180 | publish/
181 |
182 | # Publish Web Output
183 | *.[Pp]ublish.xml
184 | *.azurePubxml
185 | # Note: Comment the next line if you want to checkin your web deploy settings,
186 | # but database connection strings (with potential passwords) will be unencrypted
187 | *.pubxml
188 | *.publishproj
189 |
190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
191 | # checkin your Azure Web App publish settings, but sensitive information contained
192 | # in these scripts will be unencrypted
193 | PublishScripts/
194 |
195 | # NuGet Packages
196 | *.nupkg
197 | # NuGet Symbol Packages
198 | *.snupkg
199 | # The packages folder can be ignored because of Package Restore
200 | **/[Pp]ackages/*
201 | # except build/, which is used as an MSBuild target.
202 | !**/[Pp]ackages/build/
203 | # Uncomment if necessary however generally it will be regenerated when needed
204 | #!**/[Pp]ackages/repositories.config
205 | # NuGet v3's project.json files produces more ignorable files
206 | *.nuget.props
207 | *.nuget.targets
208 |
209 | # Microsoft Azure Build Output
210 | csx/
211 | *.build.csdef
212 |
213 | # Microsoft Azure Emulator
214 | ecf/
215 | rcf/
216 |
217 | # Windows Store app package directories and files
218 | AppPackages/
219 | BundleArtifacts/
220 | Package.StoreAssociation.xml
221 | _pkginfo.txt
222 | *.appx
223 | *.appxbundle
224 | *.appxupload
225 |
226 | # Visual Studio cache files
227 | # files ending in .cache can be ignored
228 | *.[Cc]ache
229 | # but keep track of directories ending in .cache
230 | !?*.[Cc]ache/
231 |
232 | # Others
233 | ClientBin/
234 | ~$*
235 | *~
236 | *.dbmdl
237 | *.dbproj.schemaview
238 | *.jfm
239 | *.pfx
240 | *.publishsettings
241 | orleans.codegen.cs
242 |
243 | # Including strong name files can present a security risk
244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424)
245 | #*.snk
246 |
247 | # Since there are multiple workflows, uncomment next line to ignore bower_components
248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
249 | #bower_components/
250 |
251 | # RIA/Silverlight projects
252 | Generated_Code/
253 |
254 | # Backup & report files from converting an old project file
255 | # to a newer Visual Studio version. Backup files are not needed,
256 | # because we have git ;-)
257 | _UpgradeReport_Files/
258 | Backup*/
259 | UpgradeLog*.XML
260 | UpgradeLog*.htm
261 | ServiceFabricBackup/
262 | *.rptproj.bak
263 |
264 | # SQL Server files
265 | *.mdf
266 | *.ldf
267 | *.ndf
268 |
269 | # Business Intelligence projects
270 | *.rdl.data
271 | *.bim.layout
272 | *.bim_*.settings
273 | *.rptproj.rsuser
274 | *- [Bb]ackup.rdl
275 | *- [Bb]ackup ([0-9]).rdl
276 | *- [Bb]ackup ([0-9][0-9]).rdl
277 |
278 | # Microsoft Fakes
279 | FakesAssemblies/
280 |
281 | # GhostDoc plugin setting file
282 | *.GhostDoc.xml
283 |
284 | # Node.js Tools for Visual Studio
285 | .ntvs_analysis.dat
286 | node_modules/
287 |
288 | # Visual Studio 6 build log
289 | *.plg
290 |
291 | # Visual Studio 6 workspace options file
292 | *.opt
293 |
294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
295 | *.vbw
296 |
297 | # Visual Studio 6 auto-generated project file (contains which files were open etc.)
298 | *.vbp
299 |
300 | # Visual Studio 6 workspace and project file (working project files containing files to include in project)
301 | *.dsw
302 | *.dsp
303 |
304 | # Visual Studio 6 technical files
305 | *.ncb
306 | *.aps
307 |
308 | # Visual Studio LightSwitch build output
309 | **/*.HTMLClient/GeneratedArtifacts
310 | **/*.DesktopClient/GeneratedArtifacts
311 | **/*.DesktopClient/ModelManifest.xml
312 | **/*.Server/GeneratedArtifacts
313 | **/*.Server/ModelManifest.xml
314 | _Pvt_Extensions
315 |
316 | # Paket dependency manager
317 | .paket/paket.exe
318 | paket-files/
319 |
320 | # FAKE - F# Make
321 | .fake/
322 |
323 | # CodeRush personal settings
324 | .cr/personal
325 |
326 | # Python Tools for Visual Studio (PTVS)
327 | __pycache__/
328 | *.pyc
329 |
330 | # Cake - Uncomment if you are using it
331 | # tools/**
332 | # !tools/packages.config
333 |
334 | # Tabs Studio
335 | *.tss
336 |
337 | # Telerik's JustMock configuration file
338 | *.jmconfig
339 |
340 | # BizTalk build output
341 | *.btp.cs
342 | *.btm.cs
343 | *.odx.cs
344 | *.xsd.cs
345 |
346 | # OpenCover UI analysis results
347 | OpenCover/
348 |
349 | # Azure Stream Analytics local run output
350 | ASALocalRun/
351 |
352 | # MSBuild Binary and Structured Log
353 | *.binlog
354 |
355 | # NVidia Nsight GPU debugger configuration file
356 | *.nvuser
357 |
358 | # MFractors (Xamarin productivity tool) working folder
359 | .mfractor/
360 |
361 | # Local History for Visual Studio
362 | .localhistory/
363 |
364 | # Visual Studio History (VSHistory) files
365 | .vshistory/
366 |
367 | # BeatPulse healthcheck temp database
368 | healthchecksdb
369 |
370 | # Backup folder for Package Reference Convert tool in Visual Studio 2017
371 | MigrationBackup/
372 |
373 | # Ionide (cross platform F# VS Code tools) working folder
374 | .ionide/
375 |
376 | # Fody - auto-generated XML schema
377 | FodyWeavers.xsd
378 |
379 | # VS Code files for those working on multiple tools
380 | .vscode/*
381 | !.vscode/settings.json
382 | !.vscode/tasks.json
383 | !.vscode/launch.json
384 | !.vscode/extensions.json
385 | *.code-workspace
386 |
387 | # Local History for Visual Studio Code
388 | .history/
389 |
390 | # Windows Installer files from build outputs
391 | *.cab
392 | *.msi
393 | *.msix
394 | *.msm
395 | *.msp
396 |
397 | # JetBrains Rider
398 | *.sln.iml
399 |
--------------------------------------------------------------------------------