* ogh * i should save my work * ogh * hhcdfhjbghshbxdfhghshc - lots of bugs in parsing still - invocation is a stub * expr parsing works * awawa * Saving work * Improve APIs a bit all around, add shortcuts. * awa * awa * AAAAAA * save work * Move shit to engine * lord * bql is kill * forgot the fucking bike rack * bql is kill for real * pjb will kill me * aughfhbdj * adgddf * gdsgvfvxshngfgh * b * hfsjhghj * a * tf you mean i have to document it * follow C# standards * Assorted cleanup and documentation pass, minor bugfix in ValueRefParser. * Start porting old commands, remove that pesky prefix in favor of integrating with the shell. * bw * Fix valueref up a bit, improve autocomplete for it. * awa * fix tests * git shut up * Arithmetic commands. * parse improvements * Update engine. --------- Co-authored-by: moonheart08 <moonheart08@users.noreply.github.com>
44 lines
2.0 KiB
XML
44 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
|
<LangVersion>11</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>..\bin\Content.Client\</OutputPath>
|
|
<OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Release;Tools;DebugOpt</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Nett" Version="0.15.0" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
|
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="UserInterface\Systems\MenuBar\Widgets\GameTopMenuBar.xaml.cs">
|
|
<DependentUpon>GameTopMenuBar.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="UserInterface\Systems\HotBar\Widgets\HotbarGui.xaml.cs">
|
|
<DependentUpon>HotbarGui.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="UserInterface\Systems\Inventory\Windows\StrippingWindow.xaml.cs">
|
|
<DependentUpon>StrippingWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Bql\ToolshedVisualizeWindow.xaml.cs">
|
|
<DependentUpon>ToolshedVisualizeWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\RobustToolbox\MSBuild\XamlIL.targets" />
|
|
</Project>
|