Skip to content

Commit

Permalink
Update NuGet packages to latest versions in submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimeEagle committed Dec 22, 2023
1 parent dfb15ec commit 7c274d5
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 46 deletions.
7 changes: 1 addition & 6 deletions VNet.Calendar.Tests/VNet.Calendar.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0-preview-23577-04" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
Expand All @@ -18,9 +15,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\VNet.Calendar\VNet.Calendar.csproj" />
</ItemGroup>

</Project>
</Project>
74 changes: 34 additions & 40 deletions VNet.Calendar/VNet.Calendar.csproj
Original file line number Diff line number Diff line change
@@ -1,41 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup>
<PackageId>VNet.Calendar</PackageId>
<Authors>PrimeEagle</Authors>
<Product>VNet.Calendar</Product>
<Description>A class library for converting dates between different calendars, both modern and ancient, and for calculating special dates.</Description>
<PackageTags>dotnet;dotnet-core;dotnet-library;calendar;date;datetime</PackageTags>
<PackageReleaseNotes>Add NuGet metadata.</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/PrimeEagle/VNet.Calendar</PackageProjectUrl>
<RepositoryUrl>https://github.com/PrimeEagle/VNet.Calendar</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>VNet.Calendar</AssemblyName>
</PropertyGroup>

<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>

<PropertyGroup Condition="'$(ServerBuild)' != ''">
</PropertyGroup>

<ItemGroup Condition="'$(ServerBuild)' != ''">
</ItemGroup>

<ItemGroup Condition="'$(ServerBuild)' == ''">
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(ServerBuild)' == ''">
<Exec Command="xcopy /e /y &quot;$(TargetPath)&quot; &quot;D:\My Code\VNet bin\&quot;" />
</Target>
</Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<PackageId>VNet.Calendar</PackageId>
<Authors>PrimeEagle</Authors>
<Product>VNet.Calendar</Product>
<Description>A class library for converting dates between different calendars, both modern and ancient, and for calculating special dates.</Description>
<PackageTags>dotnet;dotnet-core;dotnet-library;calendar;date;datetime</PackageTags>
<PackageReleaseNotes>Add NuGet metadata.</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/PrimeEagle/VNet.Calendar</PackageProjectUrl>
<RepositoryUrl>https://github.com/PrimeEagle/VNet.Calendar</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>VNet.Calendar</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup Condition="'$(ServerBuild)' != ''">
</PropertyGroup>
<ItemGroup Condition="'$(ServerBuild)' != ''">
</ItemGroup>
<ItemGroup Condition="'$(ServerBuild)' == ''">
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(ServerBuild)' == ''">
<Exec Command="xcopy /e /y &quot;$(TargetPath)&quot; &quot;D:\My Code\VNet bin\&quot;" />
</Target>
</Project>

0 comments on commit 7c274d5

Please sign in to comment.