Skip to content

Commit 12a701c

Browse files
committed
Updated to the latest C++#.
1 parent 669bf4a commit 12a701c

File tree

10 files changed

+91
-55
lines changed

10 files changed

+91
-55
lines changed

QtSharp.CLI/QtSharp.CLI.csproj

+24-8
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>QtSharp.CLI</RootNamespace>
1212
<AssemblyName>QtSharp.CLI</AssemblyName>
13-
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1414
<TargetFrameworkProfile>
1515
</TargetFrameworkProfile>
1616
<FileAlignment>512</FileAlignment>
@@ -63,27 +63,43 @@
6363
</PropertyGroup>
6464
<ItemGroup>
6565
<Reference Include="CppSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
66-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.dll</HintPath>
66+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.dll</HintPath>
6767
<Private>True</Private>
6868
</Reference>
6969
<Reference Include="CppSharp.AST, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
70-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.AST.dll</HintPath>
70+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.AST.dll</HintPath>
7171
<Private>True</Private>
7272
</Reference>
73-
<Reference Include="CppSharp.Generator, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
74-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Generator.dll</HintPath>
73+
<Reference Include="CppSharp.Generator, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
74+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Generator.dll</HintPath>
7575
<Private>True</Private>
7676
</Reference>
7777
<Reference Include="CppSharp.Parser, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
78-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Parser.dll</HintPath>
78+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Parser.dll</HintPath>
7979
<Private>True</Private>
8080
</Reference>
8181
<Reference Include="CppSharp.Parser.CLI, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64">
82-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Parser.CLI.dll</HintPath>
82+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Parser.CLI.dll</HintPath>
8383
<Private>True</Private>
8484
</Reference>
8585
<Reference Include="CppSharp.Runtime, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
86-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Runtime.dll</HintPath>
86+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Runtime.dll</HintPath>
87+
<Private>True</Private>
88+
</Reference>
89+
<Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
90+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll</HintPath>
91+
<Private>True</Private>
92+
</Reference>
93+
<Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
94+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll</HintPath>
95+
<Private>True</Private>
96+
</Reference>
97+
<Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
98+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll</HintPath>
99+
<Private>True</Private>
100+
</Reference>
101+
<Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
102+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll</HintPath>
87103
<Private>True</Private>
88104
</Reference>
89105
<Reference Include="System" />

QtSharp.CLI/app.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/></startup></configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration>

QtSharp.CLI/packages.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Baseclass.Contrib.Nuget.Output" version="2.1.0" targetFramework="net451" />
4-
<package id="CppSharp" version="0.7.12" targetFramework="net451" developmentDependency="true" />
4+
<package id="CppSharp" version="0.8.1" targetFramework="net461" developmentDependency="true" />
5+
<package id="Mono.Cecil" version="0.9.6.4" targetFramework="net461" />
56
</packages>

QtSharp.Tests/QtSharp.Tests.csproj

+18-13
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>QtSharp.Tests</RootNamespace>
1111
<AssemblyName>QtSharp.Tests</AssemblyName>
12-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14-
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
14+
<TargetFrameworkProfile>
15+
</TargetFrameworkProfile>
1516
</PropertyGroup>
1617
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1718
<DebugSymbols>true</DebugSymbols>
@@ -23,6 +24,7 @@
2324
<WarningLevel>4</WarningLevel>
2425
<PlatformTarget>x86</PlatformTarget>
2526
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
27+
<Prefer32Bit>false</Prefer32Bit>
2628
</PropertyGroup>
2729
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2830
<DebugType>pdbonly</DebugType>
@@ -32,6 +34,7 @@
3234
<ErrorReport>prompt</ErrorReport>
3335
<WarningLevel>4</WarningLevel>
3436
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
37+
<Prefer32Bit>false</Prefer32Bit>
3538
</PropertyGroup>
3639
<PropertyGroup>
3740
<StartupObject />
@@ -45,6 +48,7 @@
4548
<PlatformTarget>x86</PlatformTarget>
4649
<ErrorReport>prompt</ErrorReport>
4750
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
51+
<Prefer32Bit>false</Prefer32Bit>
4852
</PropertyGroup>
4953
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
5054
<OutputPath>bin\x86\Release\</OutputPath>
@@ -55,29 +59,30 @@
5559
<PlatformTarget>x86</PlatformTarget>
5660
<ErrorReport>prompt</ErrorReport>
5761
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
62+
<Prefer32Bit>false</Prefer32Bit>
5863
</PropertyGroup>
5964
<ItemGroup>
6065
<Reference Include="CppSharp.Runtime">
6166
<HintPath>..\References\CppSharp.Runtime.dll</HintPath>
6267
</Reference>
63-
<Reference Include="nunit.core">
64-
<HintPath>..\packages\NUnitTestAdapter.WithFramework.1.2\lib\nunit.core.dll</HintPath>
68+
<Reference Include="nunit.core, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
69+
<HintPath>..\packages\NUnitTestAdapter.WithFramework.2.0.0\lib\nunit.core.dll</HintPath>
6570
<Private>False</Private>
6671
</Reference>
67-
<Reference Include="nunit.core.interfaces">
68-
<HintPath>..\packages\NUnitTestAdapter.WithFramework.1.2\lib\nunit.core.interfaces.dll</HintPath>
72+
<Reference Include="nunit.core.interfaces, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
73+
<HintPath>..\packages\NUnitTestAdapter.WithFramework.2.0.0\lib\nunit.core.interfaces.dll</HintPath>
6974
<Private>False</Private>
7075
</Reference>
71-
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
72-
<SpecificVersion>False</SpecificVersion>
73-
<HintPath>..\packages\NUnitTestAdapter.WithFramework.1.2\lib\nunit.framework.dll</HintPath>
76+
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
77+
<HintPath>..\packages\NUnitTestAdapter.WithFramework.2.0.0\lib\nunit.framework.dll</HintPath>
78+
<Private>True</Private>
7479
</Reference>
75-
<Reference Include="nunit.util">
76-
<HintPath>..\packages\NUnitTestAdapter.WithFramework.1.2\lib\nunit.util.dll</HintPath>
80+
<Reference Include="nunit.util, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
81+
<HintPath>..\packages\NUnitTestAdapter.WithFramework.2.0.0\lib\nunit.util.dll</HintPath>
7782
<Private>False</Private>
7883
</Reference>
79-
<Reference Include="NUnit.VisualStudio.TestAdapter">
80-
<HintPath>..\packages\NUnitTestAdapter.WithFramework.1.2\lib\NUnit.VisualStudio.TestAdapter.dll</HintPath>
84+
<Reference Include="NUnit.VisualStudio.TestAdapter, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4cb40d35494691ac, processorArchitecture=MSIL">
85+
<HintPath>..\packages\NUnitTestAdapter.WithFramework.2.0.0\lib\NUnit.VisualStudio.TestAdapter.dll</HintPath>
8186
<Private>False</Private>
8287
</Reference>
8388
<Reference Include="QtCoreSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">

QtSharp.Tests/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnitTestAdapter.WithFramework" version="1.2" targetFramework="net40-Client" />
3+
<package id="NUnitTestAdapter.WithFramework" version="2.0.0" targetFramework="net40-client" />
44
</packages>

QtSharp.sln

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.31101.0
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QtSharp", "QtSharp\QtSharp.csproj", "{861046E1-DA11-4229-B9B6-45426E7A723E}"
77
EndProject
@@ -19,6 +19,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{345349CF-F
1919
EndProjectSection
2020
EndProject
2121
Global
22+
GlobalSection(Performance) = preSolution
23+
HasPerformanceSessions = true
24+
EndGlobalSection
2225
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2326
Debug|Any CPU = Debug|Any CPU
2427
Debug|x86 = Debug|x86
@@ -48,14 +51,15 @@ Global
4851
{5E8F503D-1B37-4298-855D-06F81B5B4630}.Release|Any CPU.Build.0 = Release|Any CPU
4952
{5E8F503D-1B37-4298-855D-06F81B5B4630}.Release|x86.ActiveCfg = Release|Any CPU
5053
EndGlobalSection
51-
GlobalSection(NestedProjects) = preSolution
54+
GlobalSection(SolutionProperties) = preSolution
55+
HideSolutionNode = FALSE
5256
EndGlobalSection
5357
GlobalSection(MonoDevelopProperties) = preSolution
5458
Policies = $0
5559
$0.DotNetNamingPolicy = $1
5660
$1.DirectoryNamespaceAssociation = None
5761
$1.ResourceNamePolicy = FileFormatDefault
58-
$0.TextStylePolicy = $2
62+
$0.TextStylePolicy = $4
5963
$2.EolMarker = Windows
6064
$2.inheritsSet = VisualStudio
6165
$2.inheritsScope = text/plain
@@ -89,13 +93,9 @@ Global
8993
$3.inheritsSet = Mono
9094
$3.inheritsScope = text/x-csharp
9195
$3.scope = text/x-csharp
92-
$0.TextStylePolicy = $4
9396
$4.EolMarker = Windows
9497
$4.inheritsSet = VisualStudio
9598
$4.inheritsScope = text/plain
9699
$4.scope = text/plain
97100
EndGlobalSection
98-
GlobalSection(SolutionProperties) = preSolution
99-
HideSolutionNode = FALSE
100-
EndGlobalSection
101101
EndGlobal

QtSharp/DocGeneration/Documentation.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -407,14 +407,14 @@ public void DocumentProperty(Property property)
407407
var expansions = property.Namespace.PreprocessedEntities.OfType<MacroExpansion>();
408408

409409
var properties = expansions.Where(e => e.Text.Contains("Q_PROPERTY") || e.Text.Contains("QDOC_PROPERTY"));
410-
string alternativeName = property.Name.Length == 1 ? property.Name :
411-
"is" + StringHelpers.Capitalize(property.Name);
410+
string alternativeName = property.OriginalName.Length == 1 ? property.OriginalName :
411+
"is" + StringHelpers.Capitalize(property.OriginalName);
412412
foreach (var macroExpansion in properties)
413413
{
414414
var name = macroExpansion.Text.Split(' ')[1];
415-
if (name == property.Name || name == alternativeName)
415+
if (name == property.OriginalName || name == alternativeName)
416416
{
417-
property.Name = name;
417+
property.OriginalName = name;
418418
this.DocumentQtProperty(property);
419419
return;
420420
}
@@ -469,24 +469,24 @@ public void DocumentProperty(Property property)
469469

470470
private void DocumentQtProperty(Declaration property)
471471
{
472-
if (!this.propertyNodes.ContainsKey(property.Name))
472+
if (!this.propertyNodes.ContainsKey(property.OriginalName))
473473
{
474474
return;
475475
}
476476
var qualifiedName = property.GetQualifiedName(decl => decl.OriginalName, decl => decl.Namespace);
477-
var node = this.propertyNodes[property.Name].Find(c => c.FullName == qualifiedName);
477+
var node = this.propertyNodes[property.OriginalName].Find(c => c.FullName == qualifiedName);
478478
if (node != null && node.HRef != null)
479479
{
480480
var link = node.HRef.Split('#');
481481
var file = link[0];
482482
if (this.membersDocumentation.ContainsKey(file))
483483
{
484484
var typeDocs = this.membersDocumentation[file];
485-
var key = string.Format("{0}-prop", property.Name);
485+
var key = string.Format("{0}-prop", property.OriginalName);
486486
var containsKey = typeDocs.ContainsKey(key);
487487
if (!containsKey)
488488
{
489-
key = property.Name;
489+
key = property.OriginalName;
490490
containsKey = typeDocs.ContainsKey(key);
491491
}
492492
if (containsKey)

QtSharp/QtSharp.cs

+3-6
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,6 @@ public void Postprocess(Driver driver, ASTContext lib)
140140
var s = System.Diagnostics.Stopwatch.StartNew();
141141
new GetCommentsFromQtDocsPass(this.qtInfo.Docs, modules).VisitASTContext(driver.Context.ASTContext);
142142
System.Console.WriteLine("Documentation done in: {0}", s.Elapsed);
143-
new CaseRenamePass(
144-
RenameTargets.Function | RenameTargets.Method | RenameTargets.Property | RenameTargets.Delegate |
145-
RenameTargets.Field | RenameTargets.Variable,
146-
RenameCasePattern.UpperCamelCase).VisitASTContext(driver.Context.ASTContext);
147143

148144
var qChar = lib.FindCompleteClass("QChar");
149145
var op = qChar.FindOperator(CXXOperatorKind.ExplicitConversion)
@@ -179,11 +175,9 @@ public void Setup(Driver driver)
179175
driver.ParserOptions.NoBuiltinIncludes = true;
180176
driver.ParserOptions.TargetTriple = this.qtInfo.Target;
181177
driver.ParserOptions.Abi = CppAbi.Itanium;
182-
driver.ParserOptions.Verbose = true;
183178
driver.ParserOptions.AddDefines("__float128=void");
184179
driver.Options.GeneratorKind = GeneratorKind.CSharp;
185180
driver.Options.UnityBuild = true;
186-
driver.Options.IgnoreParseWarnings = true;
187181
driver.Options.CheckSymbols = true;
188182
driver.Options.CompileCode = true;
189183
driver.Options.GenerateDefaultValuesForArguments = true;
@@ -246,6 +240,9 @@ public void Setup(Driver driver)
246240
module.CodeFiles.Add(Path.Combine(dir, "QChar.cs"));
247241
module.CodeFiles.Add(Path.Combine(dir, "QEvent.cs"));
248242
}
243+
var moduleInitializer = Path.GetTempFileName();
244+
File.WriteAllText(moduleInitializer, "internal class ModuleInitializer { internal static void Run() {} }");
245+
module.CodeFiles.Add(moduleInitializer);
249246

250247
driver.Options.Modules.Add(module);
251248
}

QtSharp/QtSharp.csproj

+24-8
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>QtSharp</RootNamespace>
1212
<AssemblyName>QtSharp</AssemblyName>
13-
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<TargetFrameworkProfile />
1616
<NuGetPackageImportStamp>
@@ -38,33 +38,49 @@
3838
</PropertyGroup>
3939
<ItemGroup>
4040
<Reference Include="CppSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
41-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.dll</HintPath>
41+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.dll</HintPath>
4242
<Private>True</Private>
4343
</Reference>
4444
<Reference Include="CppSharp.AST, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
45-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.AST.dll</HintPath>
45+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.AST.dll</HintPath>
4646
<Private>True</Private>
4747
</Reference>
48-
<Reference Include="CppSharp.Generator, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
49-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Generator.dll</HintPath>
48+
<Reference Include="CppSharp.Generator, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
49+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Generator.dll</HintPath>
5050
<Private>True</Private>
5151
</Reference>
5252
<Reference Include="CppSharp.Parser, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
53-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Parser.dll</HintPath>
53+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Parser.dll</HintPath>
5454
<Private>True</Private>
5555
</Reference>
5656
<Reference Include="CppSharp.Parser.CLI, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64">
57-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Parser.CLI.dll</HintPath>
57+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Parser.CLI.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
6060
<Reference Include="CppSharp.Runtime, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
61-
<HintPath>..\packages\CppSharp.0.7.12\lib\CppSharp.Runtime.dll</HintPath>
61+
<HintPath>..\packages\CppSharp.0.8.1\lib\CppSharp.Runtime.dll</HintPath>
6262
<Private>True</Private>
6363
</Reference>
6464
<Reference Include="HtmlAgilityPack, Version=1.4.9.5, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
6565
<HintPath>..\packages\HtmlAgilityPack.1.4.9.5\lib\Net45\HtmlAgilityPack.dll</HintPath>
6666
<Private>True</Private>
6767
</Reference>
68+
<Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
69+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll</HintPath>
70+
<Private>True</Private>
71+
</Reference>
72+
<Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
73+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll</HintPath>
74+
<Private>True</Private>
75+
</Reference>
76+
<Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
77+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll</HintPath>
78+
<Private>True</Private>
79+
</Reference>
80+
<Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
81+
<HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll</HintPath>
82+
<Private>True</Private>
83+
</Reference>
6884
<Reference Include="Mono.Data.Sqlite">
6985
<HintPath>..\References\Mono.Data.Sqlite.dll</HintPath>
7086
</Reference>

QtSharp/packages.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Baseclass.Contrib.Nuget.Output" version="2.1.0" targetFramework="net451" />
4-
<package id="CppSharp" version="0.7.12" targetFramework="net451" developmentDependency="true" />
4+
<package id="CppSharp" version="0.8.1" targetFramework="net461" developmentDependency="true" />
55
<package id="HtmlAgilityPack" version="1.4.9.5" targetFramework="net451" />
6+
<package id="Mono.Cecil" version="0.9.6.4" targetFramework="net461" />
67
<package id="zlib.net" version="1.0.4" targetFramework="net451" />
78
</packages>

0 commit comments

Comments
 (0)