-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCarbon.Modules.csproj
More file actions
20 lines (17 loc) · 1.03 KB
/
Carbon.Modules.csproj
File metadata and controls
20 lines (17 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Build">
<PropertyGroup>
<Product>Carbon.Modules</Product>
<OutputType>Library</OutputType>
</PropertyGroup>
<Import Project="$(SolutionDir)\.msbuild\Common.props" />
<Import Project="$(SolutionDir)\.msbuild\ReferencesRust.props" />
<Import Project="$(SolutionDir)\.msbuild\AssemblyName.props" />
<ItemGroup>
<Reference Include="$(SolutionDir)..\rust\$(OperatingSystem)\RustDedicated_Data\Managed\UnityEngine.CoreModule.dll" Private="false" />
<ProjectReference Include="$(SolutionDir)\Carbon.Components\Carbon.Common\Carbon.Common.csproj" Private="false" />
</ItemGroup>
<Target Condition="'$(Configuration)' != 'Minimal' And '$(Configuration)' != 'MinimalUnix'" Name="CustomRelease" AfterTargets="Build" DependsOnTargets="PrepareRelease">
<Copy SourceFiles="$(OutputPath)$(Product).dll" DestinationFolder="$(c_modules)" />
<Copy Condition="$(Configuration.Contains('Debug'))" SourceFiles="$(OutputPath)$(Product).xml" DestinationFolder="$(c_modules)" />
</Target>
</Project>