Skip to content

Commit

Permalink
Increment MRTK nightly dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sescalada committed Sep 25, 2023
1 parent bb021e3 commit 97813c7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<ProjectReference Include="$(MSBuildThisFileDirectory)submodules\MRTK\Source\Evergine.MRTK\Evergine.MRTK.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(UseMRTKNuget)'=='true' And '$(ReferenceMRTK)'=='true'">
<PackageReference Include="Evergine.MRTK" Version="2023.2.27.1" />
<PackageReference Include="Evergine.MRTK" Version="2023.9.25.3-nightly" />
</ItemGroup>

<!-- Add-ons packaging -->
Expand All @@ -38,7 +38,7 @@
<IsAddOnProject Condition="'$(IsAddOnProject)'==''">false</IsAddOnProject>
</PropertyGroup>
<ItemGroup Condition="'$(IsAddOnProject)'=='true'">
<PackageReference Include="Evergine.Packages.Targets" Version="2023.3.15.1-nightly" />
<PackageReference Include="Evergine.Packages.Targets" Version="2023.9.21.1-nightly" />
</ItemGroup>

<!-- Stylecop -->
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# XRV
# XRV

## How to update to newer Engine version

1. Ensure MRTK is updated to new Evergine version.
2. Update Engine references in XRV. You can use Evergine Launcher for this (it will automatically update all references).
3. Update packages targets in _Directory.Build.props_ file.
```
<ItemGroup Condition="'$(IsAddOnProject)'=='true'">
<PackageReference Include="Evergine.Packages.Targets" Version="2023.9.21.1-nightly" />
</ItemGroup>
```
4. **(If you want to create XRV public packages)** Remember to update _Directory.Build.props_ file to point to public MRTK version to be used.
```
<ItemGroup Condition="'$(UseMRTKNuget)'=='true' And '$(ReferenceMRTK)'=='true'">
<PackageReference Include="Evergine.MRTK" Version="2023.9.25.3-nightly" />
</ItemGroup>
```

0 comments on commit 97813c7

Please sign in to comment.