-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSampleDebuggerEmbedded.csproj
More file actions
22 lines (18 loc) · 839 Bytes
/
SampleDebuggerEmbedded.csproj
File metadata and controls
22 lines (18 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>SampleDebuggerEmbedded</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ChibiRuby\ChibiRuby.csproj" />
<ProjectReference Include="..\..\src\ChibiRuby.Compiler\ChibiRuby.Compiler.csproj" />
<ProjectReference Include="..\..\src\ChibiRuby.Debugger\ChibiRuby.Debugger.csproj" />
<ProjectReference Include="..\..\src\ChibiRuby.Debugger.Dap\ChibiRuby.Debugger.Dap.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="scenarios\**\*.rb" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>