-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcsb.csproj
More file actions
49 lines (44 loc) · 1.9 KB
/
Copy pathcsb.csproj
File metadata and controls
49 lines (44 loc) · 1.9 KB
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
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration>Release</Configuration>
<WasmCopyAppZipToHelixTestDir Condition="'$(ArchiveTests)' == 'true'">true</WasmCopyAppZipToHelixTestDir>
<WasmMainJSPath>script.js</WasmMainJSPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<WasmDebugLevel>0</WasmDebugLevel>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<WasmExtraFilesToDeploy Include="index.html" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CodeAnalysis">
<HintPath>$(WasmAppHostDir)Microsoft.CodeAnalysis.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.CSharp">
<HintPath>$(WasmAppHostDir)Microsoft.CodeAnalysis.CSharp.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.CSharp.Scripting">
<HintPath>$(WasmAppHostDir)Microsoft.CodeAnalysis.CSharp.Scripting.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.Scripting">
<HintPath>$(WasmAppHostDir)Microsoft.CodeAnalysis.Scripting.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(WasmAppHostDir)Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup>
<_SampleProject>csb.csproj</_SampleProject>
</PropertyGroup>
<Target Name="CSBPublish" AfterTargets="_BeforeWasmBuildApp">
<ItemGroup>
<_WasmAssembliesInternal Include="$(WasmAppHostDir)Microsoft.CodeAnalysis.dll" />
<_WasmAssembliesInternal Include="$(WasmAppHostDir)Microsoft.CodeAnalysis.CSharp.dll" />
<_WasmAssembliesInternal Include="$(WasmAppHostDir)Microsoft.CodeAnalysis.CSharp.Scripting.dll" />
<_WasmAssembliesInternal Include="$(WasmAppHostDir)Microsoft.CodeAnalysis.Scripting.dll" />
<_WasmAssembliesInternal Include="$(WasmAppHostDir)Newtonsoft.Json.dll" />
</ItemGroup>
</Target>
<Target Name="RunSample" DependsOnTargets="RunSampleWithBrowser" />
</Project>