Files
sbox-public/engine/Tools/SboxBuild/SboxBuild.csproj
Lorenz Junglas 8dbcd83bbe Refactor the public repo sync (#3444)
* Refactor sync script

Use single filter repo call
Use globs instead of python madness
Ensure shallow clone is clean before working on it

* Add dry run option to sync script
* Add public gitattributes
2025-11-25 14:40:57 +01:00

38 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<OutputPath>bin</OutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<PackAsTool>true</PackAsTool>
<ToolCommandName>sboxbuild</ToolCommandName>
<PackageId>sboxbuild</PackageId>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>1.0.0</Version>
<AssemblyName>sboxbuild</AssemblyName>
<RootNamespace>Facepunch</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\InteropGen\InteropGen.csproj" />
<ProjectReference Include="..\ShaderProc\ShaderProc.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Facepunch.AssemblySchema" Version="1.0.13" />
</ItemGroup>
<ItemGroup>
<None Update="sentry-cli.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>