-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfint.fsproj
More file actions
26 lines (23 loc) · 809 Bytes
/
fint.fsproj
File metadata and controls
26 lines (23 loc) · 809 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Collections.fs" />
<Compile Include="Utils.fs" />
<Compile Include="Variant.fs" />
<Compile Include="Enums.fs" />
<Compile Include="IO.fs" />
<Compile Include="PEImage.fs" />
<Compile Include="MethodBody.fs" />
<Compile Include="CodedIndex.fs" />
<Compile Include="Signature.fs" />
<Compile Include="Types.fs" />
<Compile Include="Schema.fs" />
<Compile Include="MetaReader.fs" />
<Compile Include="Interpreter.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>