Browse Source

init

master
Robin Thoni 6 years ago
commit
3e3277a11b

+ 52
- 0
.gitignore View File

@@ -0,0 +1,52 @@
1
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
2
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3
+
4
+# User-specific stuff:
5
+.idea/.idea.luticate2/.idea/workspace.xml
6
+.idea/.idea.luticate2/.idea/tasks.xml
7
+
8
+# Sensitive or high-churn files:
9
+.idea/.idea.luticate2/.idea/dataSources/
10
+.idea/.idea.luticate2/.idea/dataSources.ids
11
+.idea/.idea.luticate2/.idea/dataSources.xml
12
+.idea/.idea.luticate2/.idea/dataSources.local.xml
13
+.idea/.idea.luticate2/.idea/sqlDataSources.xml
14
+.idea/.idea.luticate2/.idea/dynamic.xml
15
+.idea/.idea.luticate2/.idea/uiDesigner.xml
16
+
17
+# Gradle:
18
+.idea/.idea.luticate2/.idea/gradle.xml
19
+.idea/.idea.luticate2/.idea/libraries
20
+
21
+# Mongo Explorer plugin:
22
+.idea/.idea.luticate2/.idea/mongoSettings.xml
23
+
24
+## File-based project format:
25
+*.iws
26
+
27
+## Plugin-specific files:
28
+
29
+# IntelliJ
30
+/out/
31
+
32
+# mpeltonen/sbt-idea plugin
33
+.idea_modules/
34
+
35
+# JIRA plugin
36
+atlassian-ide-plugin.xml
37
+
38
+# Crashlytics plugin (for Android Studio and IntelliJ)
39
+com_crashlytics_export_strings.xml
40
+crashlytics.properties
41
+crashlytics-build.properties
42
+fabric.properties
43
+
44
+bin
45
+obj
46
+*.dll
47
+*.pdb
48
+
49
+/packages
50
+
51
+*.lock.json
52
+appsettings.Production.json

+ 9
- 0
.idea/.idea.luticate2/.idea/contentModel.xml View File

@@ -0,0 +1,9 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="ContentModelStore">
4
+    <e p="$USER_HOME$/.Rider2018.1/system/resharper-host/local/Transient/ReSharperHost/v12/SolutionCaches/_luticate2.1484521948.00" t="ExcludeRecursive" />
5
+    <e p="$PROJECT_DIR$" t="IncludeFlat">
6
+      <e p="luticate2.sln" t="IncludeFlat" />
7
+    </e>
8
+  </component>
9
+</project>

+ 7
- 0
.idea/.idea.luticate2/.idea/indexLayout.xml View File

@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="ContentModelUserStore">
4
+    <explicitIncludes />
5
+    <explicitExcludes />
6
+  </component>
7
+</project>

+ 8
- 0
.idea/.idea.luticate2/.idea/modules.xml View File

@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="ProjectModuleManager">
4
+    <modules>
5
+      <module fileurl="file://$PROJECT_DIR$/.idea/.idea.luticate2/riderModule.iml" filepath="$PROJECT_DIR$/.idea/.idea.luticate2/riderModule.iml" />
6
+    </modules>
7
+  </component>
8
+</project>

+ 6
- 0
.idea/.idea.luticate2/.idea/vcs.xml View File

@@ -0,0 +1,6 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="VcsDirectoryMappings">
4
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+  </component>
6
+</project>

+ 7
- 0
.idea/.idea.luticate2/riderModule.iml View File

@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<module type="RIDER_MODULE" version="4">
3
+  <component name="NewModuleRootManager">
4
+    <content url="file://$MODULE_DIR$/../.." />
5
+    <orderEntry type="sourceFolder" forTests="false" />
6
+  </component>
7
+</module>

+ 8
- 0
luticate2.sln View File

@@ -0,0 +1,8 @@
1
+
2
+Microsoft Visual Studio Solution File, Format Version 12.00
3
+Global
4
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
5
+		Debug|Any CPU = Debug|Any CPU
6
+		Release|Any CPU = Release|Any CPU
7
+	EndGlobalSection
8
+EndGlobal

Loading…
Cancel
Save