Skip to content

Commit

Permalink
Update submodule from VNet solution
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimeEagle committed Dec 18, 2023
1 parent 14062ee commit f68c767
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions VNet.Calendar/VNet.Calendar.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(ServerBuild)' != ''">
</PropertyGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /e /y &quot;$(TargetPath)&quot; &quot;D:\My Code\VNet bin\&quot;" />
</Target>
<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 f68c767

Please sign in to comment.