microsoft / ailab

Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
https://www.ailab.microsoft.com/experiments/
MIT License
7.69k stars 1.39k forks source link

https://dotnet.myget.org/F/uwpcommunitytoolkit/api/v3/index.json doesn't exist #130

Closed kazu0622 closed 2 years ago

kazu0622 commented 3 years ago

I tried to build Speaker.Recorder in VS2019 ,but I 'm facing the issue that https://dotnet.myget.org/F/uwpcommunitytoolkit/api/v3/index.json doesn't exist. I'd like to know how to cope with this issue.

Thanks.

ttkrpink commented 2 years ago

Same problem, anyone can help?

ttkrpink commented 2 years ago

Hi, Kazu, How did you solve the problem with index.json doesn't exist?

Thansk

ttk

发件人:kazu0622 @.> 发送日期:2021-11-26 14:58:10 收件人:microsoft/ailab @.> 抄送人:ttkrpink @.>,Comment @.> 主题:Re: [microsoft/ailab] https://dotnet.myget.org/F/uwpcommunitytoolkit/api/v3/index.json doesn't exist (#130)

Closed #130. — You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android.

kazu0622 commented 2 years ago

@ttkrpink Unfortunately, I wasn't able to find a solution.

luuk777w commented 2 years ago

For anyone who is facing this problem:

You need to remove https://dotnet.myget.org/F/uwpcommunitytoolkit/api/v3/index.json from Directory.Build.props

Then in Speaker.Recorder.csproj you need to change this:

    <PackageReference Include="Microsoft.Toolkit.Win32.UI.SDK" Version="6.1.0-build.1" />
    <PackageReference Include="Microsoft.Toolkit.Wpf.UI.Controls" Version="6.1.0-build.1" />

to this:

    <PackageReference Include="Microsoft.Toolkit.Win32.UI.SDK" Version="6.1.0" />
    <PackageReference Include="Microsoft.Toolkit.Wpf.UI.Controls" Version="6.1.0" />

As well as in Speaker.Recorder.UWP.csproj change this:

    <PackageReference Include="Microsoft.Toolkit.Win32.UI.XamlApplication">
      <Version>6.1.0-build.1</Version>
    </PackageReference>

to this:

    <PackageReference Include="Microsoft.Toolkit.Win32.UI.XamlApplication">
      <Version>6.1.0</Version>
    </PackageReference>