This commit is contained in:
Thorsten Sommer 2020-07-28 18:24:30 +02:00
parent 77c7ed03d1
commit cdfe8574bf
9 changed files with 95 additions and 0 deletions

13
.idea/.idea.ExaArray/.idea/.gitignore vendored Normal file
View 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/

View 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>

View File

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

View 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>

View 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>

View 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
View 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
View File

@ -0,0 +1,7 @@
namespace Exa
{
public sealed class EArray1D
{
}
}

10
ExaArray/ExaArray.csproj Normal file
View 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>