-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
110 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/EphemeralMongo.Runtimes/EphemeralMongo8.runtime.linux-x64.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<MongoVersion>8</MongoVersion> | ||
<FullMongoVersion>PLACEHOLDER</FullMongoVersion> | ||
<FullMongoVersion Condition=" '$(FullMongoVersion)' == 'PLACEHOLDER' ">$(MongoVersion)</FullMongoVersion> | ||
</PropertyGroup> | ||
|
||
<Import Project="EphemeralMongo.runtime.targets" /> | ||
</Project> |
9 changes: 9 additions & 0 deletions
9
src/EphemeralMongo.Runtimes/EphemeralMongo8.runtime.osx-x64.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<MongoVersion>8</MongoVersion> | ||
<FullMongoVersion>PLACEHOLDER</FullMongoVersion> | ||
<FullMongoVersion Condition=" '$(FullMongoVersion)' == 'PLACEHOLDER' ">$(MongoVersion)</FullMongoVersion> | ||
</PropertyGroup> | ||
|
||
<Import Project="EphemeralMongo.runtime.targets" /> | ||
</Project> |
9 changes: 9 additions & 0 deletions
9
src/EphemeralMongo.Runtimes/EphemeralMongo8.runtime.ubuntu.22.04-x64.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<MongoVersion>8</MongoVersion> | ||
<FullMongoVersion>PLACEHOLDER</FullMongoVersion> | ||
<FullMongoVersion Condition=" '$(FullMongoVersion)' == 'PLACEHOLDER' ">$(MongoVersion)</FullMongoVersion> | ||
</PropertyGroup> | ||
|
||
<Import Project="EphemeralMongo.runtime.targets" /> | ||
</Project> |
9 changes: 9 additions & 0 deletions
9
src/EphemeralMongo.Runtimes/EphemeralMongo8.runtime.win-x64.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<MongoVersion>8</MongoVersion> | ||
<FullMongoVersion>PLACEHOLDER</FullMongoVersion> | ||
<FullMongoVersion Condition=" '$(FullMongoVersion)' == 'PLACEHOLDER' ">$(MongoVersion)</FullMongoVersion> | ||
</PropertyGroup> | ||
|
||
<Import Project="EphemeralMongo.runtime.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<MongoVersion>8</MongoVersion> | ||
<FullMongoVersion>PLACEHOLDER</FullMongoVersion> | ||
<FullMongoVersion Condition=" '$(FullMongoVersion)' == 'PLACEHOLDER' ">$(MongoVersion)</FullMongoVersion> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
<IsPackable>true</IsPackable> | ||
<Description>.NET native wrapper for MongoDB $(FullMongoVersion) built for .NET Standard 2.0.</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\EphemeralMongo.Core\EphemeralMongo.Core.csproj" /> | ||
<ProjectReference Include="..\EphemeralMongo.Runtimes\EphemeralMongo$(MongoVersion).runtime.linux-x64.csproj" IncludeAssets="all" ExcludeAssets="none" PrivateAssets="contentfiles;analyzers" /> | ||
<ProjectReference Include="..\EphemeralMongo.Runtimes\EphemeralMongo$(MongoVersion).runtime.osx-x64.csproj" IncludeAssets="all" ExcludeAssets="none" PrivateAssets="contentfiles;analyzers" /> | ||
<ProjectReference Include="..\EphemeralMongo.Runtimes\EphemeralMongo$(MongoVersion).runtime.win-x64.csproj" IncludeAssets="all" ExcludeAssets="none" PrivateAssets="contentfiles;analyzers" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5128#solution-1 --> | ||
<None Include="_._" Pack="true" PackagePath="lib\$(TargetFramework)" /> | ||
<None Include="..\..\README.md" Link="README.md" CopyToOutputDirectory="Never" CopyToPublishDirectory="Never" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
Empty file.