Skip to content

Commit

Permalink
Updated packages. (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgernand authored Mar 19, 2024
1 parent 24feab3 commit 4b02fd4
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 32 deletions.
9 changes: 6 additions & 3 deletions MongoDB.DbContext.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".items", ".items", "{241433
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{EDEC7D8F-4C6F-4DE3-8022-17A2A23AB18B}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{24F9EFE8-010B-48D9-B5D2-EF194BDEAC31}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{9BE8804F-BCC0-48CF-9AEC-ED97414B0C78}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MongoDB.DbContext", "src\MongoDB.DbContext\MongoDB.DbContext.csproj", "{CFCF94DC-8C41-4415-8245-8DF69027EEC5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MongoDB.DbContext", "src\MongoDB.DbContext\MongoDB.DbContext.csproj", "{CFCF94DC-8C41-4415-8245-8DF69027EEC5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApp", "samples\SampleApp\SampleApp.csproj", "{A5844FF1-7F95-4435-BDDB-E376DBD43B8E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleApp", "samples\SampleApp\SampleApp.csproj", "{A5844FF1-7F95-4435-BDDB-E376DBD43B8E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MongoDB.DbContext.UnitTests", "tests\MongoDB.DbContext.UnitTests\MongoDB.DbContext.UnitTests.csproj", "{53B3C715-4048-4822-84BA-22D039C05601}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MongoDB.DbContext.UnitTests", "tests\MongoDB.DbContext.UnitTests\MongoDB.DbContext.UnitTests.csproj", "{53B3C715-4048-4822-84BA-22D039C05601}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
45 changes: 45 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<Project>

<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>

<PropertyGroup>
<AssemblyName>MadEyeMatt.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>MadEyeMatt.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<PackageId>$(AssemblyName)</PackageId>
<PackageOutputPath>..\..\package-output</PackageOutputPath>
<IncludeSymbols>false</IncludeSymbols>
<Authors>Matthias Gernand</Authors>
<Description>A DB context implementation for MongoDB.</Description>
<NeutralLanguage>en</NeutralLanguage>
<PackageProjectUrl>https://github.com/mgernand/MongoDB.DbContext</PackageProjectUrl>
<RepositoryUrl>https://github.com/mgernand/MongoDB.DbContext</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>mongodb;entity;database;context;dbcontext</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>8.1.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<FileVersion>$(VersionPrefix)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<InformationalVersion>$(Version)</InformationalVersion>
</PropertyGroup>

<PropertyGroup>
<Product>MongoDB.DbContext</Product>
<AssemblyTitle>MongoDB.DbContext</AssemblyTitle>
<Copyright>Copyright © 2023-2024 Matthias Gernand. All rights reserved.</Copyright>
</PropertyGroup>

</Project>
26 changes: 0 additions & 26 deletions src/MongoDB.DbContext/MongoDB.DbContext.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,6 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup>
<PackageId>MadEyeMatt.$(AssemblyName)</PackageId>
<AssemblyName>MadEyeMatt.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>MadEyeMatt.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<IncludeSymbols>false</IncludeSymbols>
<Copyright>Copyright © 2023-2024 Matthias Gernand. All rights reserved.</Copyright>
<Version>8.1.0</Version>
<AssemblyVersion>8.1.0</AssemblyVersion>
<FileVersion>8.1.0</FileVersion>
<Authors>Matthias Gernand</Authors>
<Description>A DB context implementation for MongoDB.</Description>
<NeutralLanguage>en</NeutralLanguage>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/mgernand/MongoDB.DbContext</PackageProjectUrl>
<RepositoryUrl>https://github.com/mgernand/MongoDB.DbContext</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>mongodb;entity;database;context;dbcontext</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.0.1">
<PackageReference Include="NUnit.Analyzers" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.1">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 4b02fd4

Please sign in to comment.