Skip to content

Commit

Permalink
Switch off package generation on demo projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
tusmester committed Mar 27, 2023
1 parent f5582c2 commit a06afb7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>SnClientDemoConsole</AssemblyName>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
Expand Down
19 changes: 10 additions & 9 deletions src/SenseNet.Client.DemoMvc/SenseNet.Client.DemoMvc.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>95b9eb02-a65c-4c59-b5ea-a1b05a90124a</UserSecretsId>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>95b9eb02-a65c-4c59-b5ea-a1b05a90124a</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\SenseNet.Client\SenseNet.Client.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SenseNet.Client\SenseNet.Client.csproj" />
</ItemGroup>

</Project>

0 comments on commit a06afb7

Please sign in to comment.