Skip to content

Commit

Permalink
Make use of env variables, so there is no need to configure anything
Browse files Browse the repository at this point in the history
  • Loading branch information
CreativeMD committed Mar 5, 2018
1 parent 6903e26 commit 6d277f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions VSExampleMods.csproj
Expand Up @@ -37,7 +37,7 @@
<Private>False</Private>
</Reference>
<Reference Include="protobuf-net">
<HintPath>..\..\..\AppData\Roaming\Vintagestory\Lib\protobuf-net.dll</HintPath>
<HintPath>$(AppData)\Vintagestory\Lib\protobuf-net.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
Expand All @@ -50,11 +50,11 @@
<Reference Include="System.Xml" />
<Reference Include="VintagestoryAPI, Version=1.0.10.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\AppData\Roaming\Vintagestory\VintagestoryAPI.dll</HintPath>
<HintPath>$(AppData)\Vintagestory\VintagestoryAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VSSurvivalMod">
<HintPath>..\..\..\AppData\Roaming\Vintagestory\Mods\VSSurvivalMod.dll</HintPath>
<HintPath>$(AppData)\Vintagestory\Mods\VSSurvivalMod.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions VSExampleMods.csproj.user
Expand Up @@ -2,15 +2,15 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<StartAction>Program</StartAction>
<StartProgram>C:\Users\tyron\AppData\Roaming\Vintagestory\Vintagestory.exe</StartProgram>
<StartArguments>--openWorld="modsamplestest" -p3 --addOrigin="C:\Users\tyron\Dropbox\vintagecraft\vsmodexamples\assets"</StartArguments>
<StartProgram>$(AppData)\Vintagestory\Vintagestory.exe</StartProgram>
<StartArguments>--openWorld="modsamplestest" -p3 --addOrigin="$(SolutionDir)assets"</StartArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<StartAction>Program</StartAction>
<StartProgram>C:\Users\tyron\AppData\Roaming\Vintagestory\Vintagestory.exe</StartProgram>
<StartProgram>$(AppData)\Vintagestory\Vintagestory.exe</StartProgram>
<StartArguments>/flatworld</StartArguments>
</PropertyGroup>
<PropertyGroup>
<ReferencePath>C:\Users\jchappelle\AppData\Roaming\Vintagestory\;C:\Users\jchappelle\AppData\Roaming\Vintagestory\Lib\</ReferencePath>
<ReferencePath>$(AppData)\Vintagestory\;$(AppData)\Vintagestory\Lib\</ReferencePath>
</PropertyGroup>
</Project>

0 comments on commit 6d277f9

Please sign in to comment.