-
Notifications
You must be signed in to change notification settings - Fork 33
/
shader-minifier-linux.fsproj
39 lines (35 loc) · 1.11 KB
/
shader-minifier-linux.fsproj
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
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\builtin.fs" />
<Compile Include="src\options.fs" />
<Compile Include="src\ast.fs" />
<Compile Include="src\printer.fs" />
<Compile Include="src\formatter.fs" />
<Compile Include="src\analyzer.fs" />
<Compile Include="src\inlining.fs" />
<Compile Include="src\renamer.fs" />
<Compile Include="src\rewriter.fs" />
<Compile Include="src\preprocessor.fs" />
<Compile Include="src\parse.fs" />
<Compile Include="src\api.fs" />
<Compile Include="src\main.fs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Argu">
<HintPath>lib\Argu.dll</HintPath>
</Reference>
<Reference Include="FParsec">
<HintPath>lib\FParsec.dll</HintPath>
</Reference>
<Reference Include="FParsecCS">
<HintPath>lib\FParsecCS.dll</HintPath>
</Reference>
<Reference Include="FSharp.Core">
<HintPath>lib\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
</Project>