This repository was archived by the owner on Feb 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRiddleSharp.csproj
More file actions
53 lines (45 loc) · 1.9 KB
/
Copy pathRiddleSharp.csproj
File metadata and controls
53 lines (45 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
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/zi2ven/RiddleSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/zi2ven/RiddleSharp</RepositoryUrl>
<Authors>zi2ven</Authors>
<Copyright>© 2025 zi2ven</Copyright>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Riddle.Generated\**" />
<Compile Remove="third_party\**" />
<Compile Remove="UnitTest\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Riddle.Generated\**" />
<EmbeddedResource Remove="third_party\**" />
<EmbeddedResource Remove="UnitTest\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Riddle.Generated\**" />
<None Remove="third_party\**" />
<None Remove="UnitTest\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Riddle.Generated\Riddle.Generated.csproj" />
<ProjectReference Include="third_party\LG-CSharp\LGenerator.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageReference Include="CppAst" Version="0.23.1" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="Spectre.Console.Cli" Version="0.51.2-preview.0.2" />
<PackageReference Include="Ubiquity.NET.Llvm" Version="20.1.8-delta" />
</ItemGroup>
<PropertyGroup>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PlatformTarget>x64</PlatformTarget>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
</Project>