Init
This commit is contained in:
parent
7c8f60036a
commit
56b0437095
@ -1,6 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<module type="RIDER_MODULE" version="4">
|
<module type="RIDER_MODULE" version="4">
|
||||||
<component name="NewModuleRootManager">
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$USER_HOME$/.nuget/packages/microsoft.net.test.sdk/16.4.0/build/netcoreapp2.1" />
|
||||||
|
<content url="file://$USER_HOME$/.nuget/packages/nunit3testadapter/3.15.1/build/netcoreapp2.0/NUnit3.TestAdapter.dll" />
|
||||||
|
<content url="file://$USER_HOME$/.nuget/packages/nunit3testadapter/3.15.1/build/netcoreapp2.0/NUnit3.TestAdapter.pdb" />
|
||||||
|
<content url="file://$USER_HOME$/.nuget/packages/nunit3testadapter/3.15.1/build/netcoreapp2.0/nunit.engine.api.dll" />
|
||||||
|
<content url="file://$USER_HOME$/.nuget/packages/nunit3testadapter/3.15.1/build/netcoreapp2.0/nunit.engine.dll" />
|
||||||
<content url="file://$MODULE_DIR$/../.." />
|
<content url="file://$MODULE_DIR$/../.." />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
</component>
|
</component>
|
||||||
|
14
ExaArray.sln
14
ExaArray.sln
@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.26124.0
|
|||||||
MinimumVisualStudioVersion = 15.0.26124.0
|
MinimumVisualStudioVersion = 15.0.26124.0
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExaArray", "ExaArray\ExaArray.csproj", "{668F1F11-DE09-44E3-BEF5-C34F69C81894}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExaArray", "ExaArray\ExaArray.csproj", "{668F1F11-DE09-44E3-BEF5-C34F69C81894}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExaArrayTests", "ExaArrayTests\ExaArrayTests.csproj", "{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@ -30,5 +32,17 @@ Global
|
|||||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x64.Build.0 = 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.ActiveCfg = Release|Any CPU
|
||||||
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x86.Build.0 = Release|Any CPU
|
{668F1F11-DE09-44E3-BEF5-C34F69C81894}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{84C8DB92-3A8A-40C4-ABF1-1F59F120CD6B}.Release|x86.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
7
ExaArrayTests/ExaArray1D.cs
Normal file
7
ExaArrayTests/ExaArray1D.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace ExaArrayTests
|
||||||
|
{
|
||||||
|
public class ExaArray1D
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
15
ExaArrayTests/ExaArrayTests.csproj
Normal file
15
ExaArrayTests/ExaArrayTests.csproj
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
|
||||||
|
<IsPackable>false</IsPackable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="nunit" Version="3.12.0" />
|
||||||
|
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
|
||||||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in New Issue
Block a user