-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWasmStrip.csproj
44 lines (35 loc) · 1.29 KB
/
WasmStrip.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="external\**" />
<EmbeddedResource Remove="external\**" />
<None Remove="external\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitmodules" />
</ItemGroup>
<ItemGroup>
<Compile Include="external\ModuleSaw\LibModuleSaw\ArrayBinaryReader.cs" />
<Compile Include="external\ModuleSaw\LibModuleSaw\Varint.cs" />
<Compile Include="external\ModuleSaw\WasmSaw\Expression.cs" />
<Compile Include="external\ModuleSaw\WasmSaw\ExpressionReader.cs" />
<Compile Include="external\ModuleSaw\WasmSaw\ModuleReader.cs" />
<Compile Include="external\ModuleSaw\WasmSaw\WasmModel.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>