mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 16:24:49 -05:00
add readmes + csproj files. time to fail miserably
This commit is contained in:
commit
16fdf57787
4 changed files with 81 additions and 0 deletions
26
Content.Client/Content.Client.csproj
Normal file
26
Content.Client/Content.Client.csproj
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
||||||
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
||||||
|
<LangVersion>8</LangVersion>
|
||||||
|
<IsPackable>false</IsPackable>
|
||||||
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
|
<OutputPath>..\bin\Content.Client\</OutputPath>
|
||||||
|
<OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Nett" Version="0.15.0" />
|
||||||
|
<PackageReference Include="JetBrains.Annotations" Version="2020.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>
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Engine.targets" />
|
||||||
|
<Target Name="ContentAfterBuild" DependsOnTargets="ClientAfterBuild" AfterTargets="Build" />
|
||||||
|
</Project>
|
||||||
25
Content.Server/Content.Server.csproj
Normal file
25
Content.Server/Content.Server.csproj
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
||||||
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
||||||
|
<LangVersion>8</LangVersion>
|
||||||
|
<IsPackable>false</IsPackable>
|
||||||
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
|
<OutputPath>..\bin\Content.Server\</OutputPath>
|
||||||
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||||
|
<OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
||||||
|
<PackageReference Include="JetBrains.Annotations" Version="2020.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.Server\Robust.Server.csproj" />
|
||||||
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
28
Content.Shared/Content.Shared.csproj
Normal file
28
Content.Shared/Content.Shared.csproj
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
||||||
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
||||||
|
<LangVersion>8</LangVersion>
|
||||||
|
<IsPackable>false</IsPackable>
|
||||||
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
|
<OutputPath>../bin/Content.Shared</OutputPath>
|
||||||
|
<Configurations>Release;Debug</Configurations>
|
||||||
|
<Platforms>AnyCPU</Platforms>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" PrivateAssets="All" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj">
|
||||||
|
<Private>false</Private>
|
||||||
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj">
|
||||||
|
<Private>false</Private>
|
||||||
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj">
|
||||||
|
<Private>false</Private>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
README.md
Normal file
2
README.md
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
### Robust Toolbox Template Project!
|
||||||
|
This is a template project for RobustToolbox, to help bootstrap the whole thing. Good luck.
|
||||||
Loading…
Add table
Add a link
Reference in a new issue