Skip to content

Commit

Permalink
Add IsPublishable property to targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Aug 6, 2022
1 parent 02095cf commit c09e3a6
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 149 deletions.
1 change: 1 addition & 0 deletions src/app/App.targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPublishable>true</IsPublishable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down
22 changes: 13 additions & 9 deletions src/app/Edelstein.Daemon.WebAPI/Edelstein.Daemon.WebAPI.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<Import Project="..\App.targets" />
<Import Project="..\App.targets"/>

<PropertyGroup>
<IsPublishable>false</IsPublishable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="5.0.0"/>
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0"/>
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1"/>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\common\Edelstein.Common.Gameplay.Database\Edelstein.Common.Gameplay.Database.csproj" />
<ProjectReference Include="..\..\common\Edelstein.Common.Gameplay\Edelstein.Common.Gameplay.csproj" />
<ProjectReference Include="..\..\common\Edelstein.Common.Services.Auth\Edelstein.Common.Services.Auth.csproj" />
<ProjectReference Include="..\..\common\Edelstein.Common.Services.Server\Edelstein.Common.Services.Server.csproj" />
<ProjectReference Include="..\..\common\Edelstein.Common.Gameplay.Database\Edelstein.Common.Gameplay.Database.csproj"/>
<ProjectReference Include="..\..\common\Edelstein.Common.Gameplay\Edelstein.Common.Gameplay.csproj"/>
<ProjectReference Include="..\..\common\Edelstein.Common.Services.Auth\Edelstein.Common.Services.Auth.csproj"/>
<ProjectReference Include="..\..\common\Edelstein.Common.Services.Server\Edelstein.Common.Services.Server.csproj"/>
</ItemGroup>

</Project>
5 changes: 5 additions & 0 deletions src/common/Common.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@

<Import Project="..\Source.targets"/>

<PropertyGroup>
<IsPackable>true</IsPackable>
<IsPublishable>false</IsPublishable>
</PropertyGroup>

</Project>

This file was deleted.

This file was deleted.

This file was deleted.

30 changes: 0 additions & 30 deletions src/plugin/Edelstein.Plugin.Login.Sample/SampleLoginPlugin.cs

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions src/plugin/Edelstein.Plugin.Login.Sample2/SampleLoginPlugin2.cs

This file was deleted.

14 changes: 0 additions & 14 deletions src/plugin/Plugin.targets

This file was deleted.

5 changes: 5 additions & 0 deletions src/protocol/Protocol.targets
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<Import Project="..\Source.targets"/>

<PropertyGroup>
<IsPackable>true</IsPackable>
<IsPublishable>false</IsPublishable>
</PropertyGroup>

</Project>

0 comments on commit c09e3a6

Please sign in to comment.