Merge pull request #41 from Microsoft/qmatteoq

Added NuGet.config for custom MyGet URL
This commit is contained in:
Sebastien Bovo 2019-01-28 08:30:24 -05:00 коммит произвёл GitHub
Родитель c49c84860c d5a42cbdb0
Коммит 255951a2eb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
12 изменённых файлов: 22 добавлений и 10 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -217,7 +217,7 @@ ClientBin/
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
!*.pfx
*.publishsettings
orleans.codegen.cs

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Просмотреть файл

@ -56,7 +56,12 @@
<Content Include="Images\Wide310x150Logo.scale-200.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ContosoExpenses\ContosoExpenses.csproj" />
<ProjectReference Include="..\ContosoExpenses\ContosoExpenses.csproj">
<DesktopBridgeSelfContained>True</DesktopBridgeSelfContained>
<DesktopBridgeIdentifier>$(DesktopBridgeRuntimeIdentifier)</DesktopBridgeIdentifier>
<Properties>SelfContained=%(DesktopBridgeSelfContained);RuntimeIdentifier=%(DesktopBridgeIdentifier)</Properties>
<SkipGetTargetFrameworkProperties>True</SkipGetTargetFrameworkProperties>
</ProjectReference>
</ItemGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.targets" />
</Project>

Двоичный файл не отображается.

Просмотреть файл

@ -7,13 +7,13 @@
IgnorableNamespaces="uap rescap">
<Identity
Name="5dde7e45-3be3-4273-a57d-93a49bbb14b2"
Publisher="CN=mpagani"
Name="ContosoExpenses"
Publisher="CN=AppConsult"
Version="1.0.0.0" />
<Properties>
<DisplayName>ContosoExpenses.Package</DisplayName>
<PublisherDisplayName>mpagani</PublisherDisplayName>
<DisplayName>Contoso Expenses</DisplayName>
<PublisherDisplayName>AppConsult</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
</Properties>

Просмотреть файл

@ -37,10 +37,10 @@
<ItemGroup>
<Reference Include="System.Runtime.WindowsRuntime">
<HintPath>..\..\..\..\..\..\..\..\..\Windows\Microsoft.NET\Framework\v4.0.30319\System.Runtime.WindowsRuntime.dll</HintPath>
<HintPath>C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.Runtime.WindowsRuntime.dll</HintPath>
</Reference>
<Reference Include="Windows">
<HintPath>..\..\..\..\..\..\..\..\..\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.17763.0\Windows.winmd</HintPath>
<HintPath>C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.17763.0\Windows.winmd</HintPath>
<IsWinMDFile>true</IsWinMDFile>
<Private>false</Private>
</Reference>

Просмотреть файл

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="Custom" value="https://www.myget.org/F/miguelrb/api/v3/index.json" />
</packageSources>
</configuration>

Просмотреть файл

@ -1237,7 +1237,7 @@ Here is the full content of the new csproj. Please double check that you have ev
</Project>
```
By default, with the new project format, all the files in the folder are considered part of the solution. As such, we don't have any more to specify each single file included in the project, like we had to do the old .csproj file. We need to specify only the ones for which we need to define a custom build action or that we want to exclude.
By default, with the new project format, all the files in the folder are considered part of the solution. As such, we don't have to specify anymore each single file included in the project, like we had to do the old .csproj file. We need to specify only the ones for which we need to define a custom build action or that we want to exclude.
It is now safe to save file by pressing **CTRL+S**.
### Task 3 - Perform the migration - NuGet packages of the project
@ -1272,7 +1272,7 @@ It is now safe to save file by pressing **CTRL+S**.
</packages>
```
5. Delete the file **Packages.config** by right clicking on it and **Delete** in the **Solution Explorer**.
5. Delete the file **Packages.config** by right clicking on it and **Delete** in the **Solution Explorer**.
6. Right click on the **Dependencies** node in the **Solution Explorer** and **Manage NuGet Packages...**