-
Notifications
You must be signed in to change notification settings - Fork 93
/
Examples.csproj
26 lines (22 loc) · 986 Bytes
/
Examples.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
<LangVersion>8</LangVersion>
<VersionPrefix>4.19.0</VersionPrefix>
<VersionSuffix>dev</VersionSuffix>
<IsPackable>false</IsPackable>
<AssemblyOriginatorKeyFile>../Keys/Key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<StartupObject>Examples.RunExamples</StartupObject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Client.Legacy\Client.Legacy.csproj" />
<ProjectReference Include="..\Client.Linq\Client.Linq.csproj" />
<ProjectReference Include="..\Client\Client.csproj" />
<Content Remove="ExampleBlazor\**" />
<Compile Remove="ExampleBlazor\**" />
<EmbeddedResource Remove="ExampleBlazor\**" />
<None Remove="ExampleBlazor\**" />
</ItemGroup>
</Project>