Skip to content
This repository was archived by the owner on Feb 28, 2022. It is now read-only.

Commit fef3209

Browse files
committed
upgrade YamlSerialization package
1 parent fe00008 commit fef3209

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

src/Microsoft.Content.Build.Code2Yaml.DataContracts/Microsoft.Content.Build.Code2Yaml.DataContracts.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
<FileAlignment>512</FileAlignment>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<Reference Include="Microsoft.DocAsCode.YamlSerialization, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
16-
<HintPath>..\..\packages\Microsoft.DocAsCode.YamlSerialization.2.2.2\lib\net45\Microsoft.DocAsCode.YamlSerialization.dll</HintPath>
17-
<Private>True</Private>
15+
<Reference Include="Microsoft.DocAsCode.YamlSerialization, Version=2.13.0.0, Culture=neutral, processorArchitecture=MSIL">
16+
<HintPath>..\..\packages\Microsoft.DocAsCode.YamlSerialization.2.13.0\lib\net452\Microsoft.DocAsCode.YamlSerialization.dll</HintPath>
1817
</Reference>
1918
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
2019
<HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
@@ -28,9 +27,8 @@
2827
<Reference Include="System.Data" />
2928
<Reference Include="System.Net.Http" />
3029
<Reference Include="System.Xml" />
31-
<Reference Include="YamlDotNet, Version=3.7.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
32-
<HintPath>..\..\packages\YamlDotNet.Signed.3.7.0\lib\net35\YamlDotNet.dll</HintPath>
33-
<Private>True</Private>
30+
<Reference Include="YamlDotNet, Version=4.1.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
31+
<HintPath>..\..\packages\YamlDotNet.Signed.4.1.0\lib\net35\YamlDotNet.dll</HintPath>
3432
</Reference>
3533
</ItemGroup>
3634
<ItemGroup>
@@ -58,7 +56,9 @@
5856
</ProjectReference>
5957
</ItemGroup>
6058
<ItemGroup>
61-
<None Include="packages.config" />
59+
<None Include="packages.config">
60+
<SubType>Designer</SubType>
61+
</None>
6262
</ItemGroup>
6363
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6464
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.DocAsCode.YamlSerialization" version="2.2.2" targetFramework="net452" />
3+
<package id="Microsoft.DocAsCode.YamlSerialization" version="2.13.0" targetFramework="net452" />
44
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
5-
<package id="YamlDotNet.Signed" version="3.7.0" targetFramework="net452" />
5+
<package id="YamlDotNet.Signed" version="4.1.0" targetFramework="net452" />
66
</packages>

src/Microsoft.Content.Build.Code2Yaml.Steps/Microsoft.Content.Build.Code2Yaml.Steps.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
<FileAlignment>512</FileAlignment>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<Reference Include="Microsoft.DocAsCode.YamlSerialization, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
16-
<HintPath>..\..\packages\Microsoft.DocAsCode.YamlSerialization.2.2.2\lib\net45\Microsoft.DocAsCode.YamlSerialization.dll</HintPath>
17-
<Private>True</Private>
15+
<Reference Include="Microsoft.DocAsCode.YamlSerialization, Version=2.13.0.0, Culture=neutral, processorArchitecture=MSIL">
16+
<HintPath>..\..\packages\Microsoft.DocAsCode.YamlSerialization.2.13.0\lib\net452\Microsoft.DocAsCode.YamlSerialization.dll</HintPath>
1817
</Reference>
1918
<Reference Include="System" />
2019
<Reference Include="System.Core" />
@@ -24,9 +23,8 @@
2423
<Reference Include="System.Data" />
2524
<Reference Include="System.Net.Http" />
2625
<Reference Include="System.Xml" />
27-
<Reference Include="YamlDotNet, Version=3.7.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
28-
<HintPath>..\..\packages\YamlDotNet.Signed.3.7.0\lib\net35\YamlDotNet.dll</HintPath>
29-
<Private>True</Private>
26+
<Reference Include="YamlDotNet, Version=4.1.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
27+
<HintPath>..\..\packages\YamlDotNet.Signed.4.1.0\lib\net35\YamlDotNet.dll</HintPath>
3028
</Reference>
3129
</ItemGroup>
3230
<ItemGroup>
@@ -70,10 +68,12 @@
7068
</ProjectReference>
7169
</ItemGroup>
7270
<ItemGroup>
73-
<None Include="packages.config" />
7471
<EmbeddedResource Include="template\DoxyfileTemplate" />
7572
</ItemGroup>
7673
<ItemGroup>
74+
<None Include="packages.config">
75+
<SubType>Designer</SubType>
76+
</None>
7777
<None Include="tools\doxygen.exe">
7878
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
7979
</None>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.DocAsCode.YamlSerialization" version="2.2.2" targetFramework="net452" />
4-
<package id="YamlDotNet.Signed" version="3.7.0" targetFramework="net452" />
3+
<package id="Microsoft.DocAsCode.YamlSerialization" version="2.13.0" targetFramework="net452" />
4+
<package id="YamlDotNet.Signed" version="4.1.0" targetFramework="net452" />
55
</packages>

0 commit comments

Comments
 (0)