Modified gitignore, removed one csproj
This commit is contained in:
19
reallife-gamemode.csproj
Normal file
19
reallife-gamemode.csproj
Normal file
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
<RootNamespace>reallife_gamemode</RootNamespace>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.4" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.4" />
|
||||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.2" />
|
||||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql.Design" Version="1.1.2" />
|
||||
<PackageReference Include="gtanetwork.api" Version="0.3.6" />
|
||||
</ItemGroup>
|
||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||
<Exec Command="if NOT "$(ConfigurationName)" == "ServerBuild" (
 del "../../client_packages\*" /Q /S
 xcopy "$(OutDir)*" "../../bridge\resources\reallife-gamemode" /Y /Q
 del "../../client_packages\*.*" /Q
 xcopy "../../reallife-gamemode\reallife-gamemode\Client\*" "../../client_packages\" /S /Q /Y
)" />
|
||||
</Target>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user