mirror of
https://github.com/Facepunch/sbox-public.git
synced 2025-12-23 14:38:13 -05:00
* 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
38 lines
1.1 KiB
XML
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> |