Skip to content

Commit f345389

Browse files
committed
CSHARP-1707: Use "outputName" to remove ".Dotnet" from the DLL names.
1 parent 6323f0b commit f345389

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

src/MongoDB.Bson.Dotnet/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"compile": {
1616
"include": [ "../MongoDB.Bson/**/*.cs", "../MongoDB.Shared/Hasher.cs" ]
1717
},
18-
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ]
18+
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ],
19+
"outputName" : "MongoDB.Bson"
1920
}
2021
}
2122
}

src/MongoDB.Driver.Core.Dotnet/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"compile": {
2020
"include": [ "../MongoDB.Driver.Core/**/*.cs", "../MongoDB.Shared/Hasher.cs" ]
2121
},
22-
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ]
22+
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ],
23+
"outputName" : "MongoDB.Driver.Core"
2324
}
2425
}
2526
}

src/MongoDB.Driver.Dotnet/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"compile": {
1717
"include": [ "../MongoDB.Driver/**/*.cs", "../MongoDB.Shared/Hasher.cs" ]
1818
},
19-
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ]
19+
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ],
20+
"outputName" : "MongoDB.Driver"
2021
}
2122
}
2223
}

src/MongoDB.Driver.GridFS.Dotnet/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"compile": {
1616
"include": [ "../MongoDB.Driver.GridFS/**/*.cs", "../MongoDB.Shared/IncrementalMD5.cs" ]
1717
},
18-
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ]
18+
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ],
19+
"outputName" : "MongoDB.Driver.GridFS"
1920
}
2021
}
2122
}

src/MongoDB.Driver.Legacy.Dotnet/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"compile": {
1818
"include": [ "../MongoDB.Driver.Legacy/**/*.cs", "../MongoDB.Shared/IncrementalMD5.cs" ]
1919
},
20-
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ]
20+
"define": [ "DEBUG", "TRACE", "NETSTANDARD16" ],
21+
"outputName" : "MongoDB.Driver.Legacy"
2122
}
2223
}
2324
}

0 commit comments

Comments
 (0)