-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLowDiscrepancySequences.fsproj
More file actions
30 lines (25 loc) · 938 Bytes
/
LowDiscrepancySequences.fsproj
File metadata and controls
30 lines (25 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include=".gitignore" />
<None Include="planned.md" />
<None Include="README.md" />
<Content Include="aSobol.txt" />
<Content Include="minitSobol.txt" />
<Compile Include="benchmark.fs" />
<Compile Include="sobolConstants.fs" />
<Compile Include="sequences.fs" />
<None Include="test.fsx" />
</ItemGroup>
</Project>