Skip to content

Commit 5d630d3

Browse files
committed
v0.7.50 release
1 parent 29c36b6 commit 5d630d3

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

src/ArangoDB.Client/ArangoDB.Client.Net45.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,17 @@
2020
<DefineConstants>DEBUG;TRACE;NET45</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
23-
<DocumentationFile>bin\Debug\net45_standalone\ArangoDB.Client.xml</DocumentationFile>
23+
<DocumentationFile>
24+
</DocumentationFile>
2425
</PropertyGroup>
2526
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2627
<DebugType>pdbonly</DebugType>
2728
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\Net45</OutputPath>
29+
<OutputPath>bin\Release\net45_standalone\</OutputPath>
2930
<DefineConstants>TRACE;NET45</DefineConstants>
3031
<ErrorReport>prompt</ErrorReport>
3132
<WarningLevel>4</WarningLevel>
33+
<DocumentationFile>bin\Release\net45_standalone\ArangoDB.Client.xml</DocumentationFile>
3234
</PropertyGroup>
3335
<ItemGroup>
3436
<Reference Include="System" />

src/ArangoDB.Client/ArangoDB.Client.Portable.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@
2424
<DefineConstants>DEBUG;TRACE;PORTABLE</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
27-
<DocumentationFile>bin\Debug\portable45-net45+win8+wpa81_standalone\ArangoDB.Client.xml</DocumentationFile>
27+
<DocumentationFile>
28+
</DocumentationFile>
2829
</PropertyGroup>
2930
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3031
<DebugType>pdbonly</DebugType>
3132
<Optimize>true</Optimize>
32-
<OutputPath>bin\Release\Portable</OutputPath>
33+
<OutputPath>bin\Release\portable45-net45+win8+wpa81_standalone\</OutputPath>
3334
<DefineConstants>TRACE;PORTABLE</DefineConstants>
3435
<ErrorReport>prompt</ErrorReport>
3536
<WarningLevel>4</WarningLevel>
37+
<DocumentationFile>bin\Release\portable45-net45+win8+wpa81_standalone\ArangoDB.Client.XML</DocumentationFile>
3638
</PropertyGroup>
3739
<ItemGroup>
3840
<Compile Include="Advanced\AdvancedOperation.cs" />

src/ArangoDB.Client/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
// You can specify all the values or you can default the Build and Revision Numbers
4848
// by using the '*' as shown below:
4949
// [assembly: AssemblyVersion("1.0.*")]
50-
[assembly: AssemblyVersion("0.7.42")]
51-
[assembly: AssemblyFileVersion("0.7.42")]
50+
[assembly: AssemblyVersion("0.7.50")]
51+
[assembly: AssemblyFileVersion("0.7.50")]
5252
[assembly: CLSCompliant(true)]

src/ArangoDB.Client/project.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"url": "git://github.com/ra0o0f/arangoclient.net"
1515
}
1616
},
17-
1817
"frameworks": {
1918
"netstandard1.1": {
2019
"buildOptions": {
20+
"xmlDoc": true,
2121
"define": [
2222
"NETSTANDARD1_1",
2323
"PORTABLE"
@@ -35,6 +35,7 @@
3535
},
3636
".NETPortable,Version=v4.5,Profile=Profile111": {
3737
"buildOptions": {
38+
"xmlDoc": true,
3839
"define": [
3940
"PORTABLE"
4041
]
@@ -74,6 +75,7 @@
7475
},
7576
"net45": {
7677
"buildOptions": {
78+
"xmlDoc": true,
7779
"define": [
7880
"NET45"
7981
]

0 commit comments

Comments
 (0)