This commit is contained in:
Thorsten Sommer 2020-09-23 20:09:31 +02:00
parent 17a6a62071
commit dfd38958db
9 changed files with 85 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

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,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/.idea.FastRng/riderModule.iml" filepath="$PROJECT_DIR$/.idea/.idea.FastRng/riderModule.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RiderProjectSettingsUpdater">
<option name="vcsConfiguration" value="2" />
</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
FastRng.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}") = "FastRng", "FastRng\FastRng.csproj", "{749685E0-9E3E-4142-86D3-B720331416AF}"
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
{749685E0-9E3E-4142-86D3-B720331416AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Debug|x64.ActiveCfg = Debug|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Debug|x64.Build.0 = Debug|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Debug|x86.ActiveCfg = Debug|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Debug|x86.Build.0 = Debug|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Release|Any CPU.Build.0 = Release|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Release|x64.ActiveCfg = Release|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Release|x64.Build.0 = Release|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Release|x86.ActiveCfg = Release|Any CPU
{749685E0-9E3E-4142-86D3-B720331416AF}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

7
FastRng/FastRng.csproj Normal file
View File

@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>