-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathB2R2.FrontEnd.API.fsproj
45 lines (42 loc) · 2.19 KB
/
B2R2.FrontEnd.API.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
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>b2r2-240x240.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>B2R2 frontend main interface.</Description>
<OtherFlags>$(OtherFlags)--warnon:3390</OtherFlags>
</PropertyGroup>
<ItemGroup>
<Compile Include="GroundWork.fs" />
<Compile Include="LiftingUnit.fs" />
<Compile Include="BinHandle.fsi" />
<Compile Include="BinHandle.fs" />
<Compile Include="CallingConvention.fsi" />
<Compile Include="CallingConvention.fs" />
<Compile Include="InstructionCollection.fs" />
<Compile Include="ExceptionInfo.fs" />
<None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="" />
<None Include="..\..\..\assets\b2r2-240x240.png" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\B2R2.Core.fsproj" />
<ProjectReference Include="..\..\BinIR\B2R2.BinIR.fsproj" />
<ProjectReference Include="..\BinFile\B2R2.FrontEnd.BinFile.fsproj" />
<ProjectReference Include="..\Intel\B2R2.FrontEnd.Intel.fsproj" />
<ProjectReference Include="..\ARM32\B2R2.FrontEnd.ARM32.fsproj" />
<ProjectReference Include="..\ARM64\B2R2.FrontEnd.ARM64.fsproj" />
<ProjectReference Include="..\AVR\B2R2.FrontEnd.AVR.fsproj" />
<ProjectReference Include="..\MIPS\B2R2.FrontEnd.MIPS.fsproj" />
<ProjectReference Include="..\EVM\B2R2.FrontEnd.EVM.fsproj" />
<ProjectReference Include="..\PARISC\B2R2.FrontEnd.PARISC.fsproj" />
<ProjectReference Include="..\PPC32\B2R2.FrontEnd.PPC32.fsproj" />
<ProjectReference Include="..\RISCV64\B2R2.FrontEnd.RISCV64.fsproj" />
<ProjectReference Include="..\CIL\B2R2.FrontEnd.CIL.fsproj" />
<ProjectReference Include="..\S390\B2R2.FrontEnd.S390.fsproj" />
<ProjectReference Include="..\SH4\B2R2.FrontEnd.SH4.fsproj" />
<ProjectReference Include="..\SPARC\B2R2.FrontEnd.SPARC.fsproj" />
<ProjectReference Include="..\TMS320C6000\B2R2.FrontEnd.TMS320C6000.fsproj" />
<ProjectReference Include="..\WASM\B2R2.FrontEnd.WASM.fsproj" />
</ItemGroup>
</Project>