Open AvinashNargund opened 2 years ago
Shoot. I'm seeing the same. I'll get back to you.
Okay, seems like the CoreServices
thing was a simple namespace problem. Using Microsoft.MixedReality.Toolkit.CoreServices.InputSystem
fixed the issue. And the build issue automatically disappeared after this change (no idea why 🤷🏻 ). Now I am able to build and deploy the app.
Should I create a PR with this change?
Glad you got it sorted out. Just to check, did you go through the 2020 upgrade instructions here?
Yes, I followed the instructions on that page.
I was able to get rid of error 1 by opening assets/nuget and commenting out the first <clear />
. like so:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--<clear />-->
<add key="MSBuildForUnity" value="https://pkgs.dev.azure.com/UnityDeveloperTools/MSBuildForUnity/_packaging/UnityDeveloperTools/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>
We're going to take a look at making things easier for Unity 2020. Internal reference number is 38627628.
Description Hi, I am trying to run the sample MRTK project on Hololens2. I updated the project to Unity2020.3.20f1. Then, I added all the necessary MRTK features using the MixedRealityFeatureTool and modified my Build settings according to the tutorial. But I am running into to two major issues -
..\mrtk\MSBuild\Projects\AOAMRTKApp.Dependencies.msb4u.g.props(22,3): error : Unable to find package Microsoft.Build.NoTargets. No packages exist with this id in source(s): MSBuildForUnity
- This has bothered me the most as I have no clue what this error means and haven't found much resources online.Assets\MixedReality.AzureObjectAnchors\Scripts\TrackableObjectSearch.cs(72,13): error CS0234: The type or namespace name 'InputSystem' does not exist in the namespace 'CoreServices' (are you missing an assembly reference?)
- I believe I have all the required features from MRFT so I don't know why I am still getting this error.Development information (please complete the following information)
AR Device information (please complete the following information):
Additional Info List of features imported from MRFT -
Please let me know if I can provide additional information to help. Thanks!