Initial
This commit is contained in:
parent
77c7ed03d1
commit
cdfe8574bf
13
.idea/.idea.ExaArray/.idea/.gitignore
vendored
Normal file
13
.idea/.idea.ExaArray/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/contentModel.xml
|
||||
/modules.xml
|
||||
/.idea.ExaArray.iml
|
||||
/projectSettingsUpdater.xml
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
4
.idea/.idea.ExaArray/.idea/encodings.xml
Normal file
4
.idea/.idea.ExaArray/.idea/encodings.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
8
.idea/.idea.ExaArray/.idea/indexLayout.xml
Normal file
8
.idea/.idea.ExaArray/.idea/indexLayout.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ContentModelUserStore">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
6
.idea/.idea.ExaArray/.idea/misc.xml
Normal file
6
.idea/.idea.ExaArray/.idea/misc.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="JavaScriptSettings">
|
||||
<option name="languageLevel" value="ES6" />
|
||||
</component>
|
||||
</project>
|
6
.idea/.idea.ExaArray/.idea/vcs.xml
Normal file
6
.idea/.idea.ExaArray/.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
7
.idea/.idea.ExaArray/riderModule.iml
Normal file
7
.idea/.idea.ExaArray/riderModule.iml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="RIDER_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$/../.." />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
34
ExaArray.sln
Normal file
34
ExaArray.sln
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.26124.0
|
||||
MinimumVisualStudioVersion = 15.0.26124.0
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExaArray", "ExaArray\ExaArray.csproj", "{668F1F11-DE09-44E3-BEF5-C34F69C81894}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x64.Build.0 = Release|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
7
ExaArray/EArray1D.cs
Normal file
7
ExaArray/EArray1D.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace Exa
|
||||
{
|
||||
public sealed class EArray1D
|
||||
{
|
||||
|
||||
}
|
||||
}
|
10
ExaArray/ExaArray.csproj
Normal file
10
ExaArray/ExaArray.csproj
Normal file
@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<RootNamespace>Exa</RootNamespace>
|
||||
<Authors>Thorsten Sommer</Authors>
|
||||
<Company>Thorsten Sommer</Company>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user