Ich habe über https://docs.altv.mp/cs/articles/create-resource.html versucht jetzt alles für das script vorzubereiten nur leider komm ich bei den schritt:
Create Resource:
Boilerplate YourProject.csproj
nicht mehr weiter.
was muss ich denn jetzt hier:
Code
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<!--Use latest version from https://www.nuget.org/packages/AltV.Net-->
<PackageReference Include="AltV.Net" Version="1.13.0" />
</ItemGroup>
<!--This copies the publish directory to the resource folder which is named "my-server"-->
<ItemGroup>
<AllOutputFiles Include="$(OutputPath)\publish\*.*" />
</ItemGroup>
<Target Name="CopyFiles" AfterTargets="publish">
<PropertyGroup>
<CopiedFiles>$(OutputPath)\publish\*.*</CopiedFiles>
<TargetLocation Condition=" '$(Configuration)' == 'Release' ">../../my-server/</TargetLocation>
</PropertyGroup>
<Copy Condition=" '$(TargetLocation)' != '' " SourceFiles="@(AllOutputFiles)" DestinationFolder="$(TargetLocation)" SkipUnchangedFiles="false" />
</Target>
</Project>
Alles anzeigen
genau eintragen werde daraus noch nicht so ganz schlau