-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOrc.FileSystem.Example.csproj
More file actions
34 lines (30 loc) · 1.45 KB
/
Orc.FileSystem.Example.csproj
File metadata and controls
34 lines (30 loc) · 1.45 KB
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
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0-windows</TargetFrameworks>
<AssemblyName>Orc.FileSystem.Example</AssemblyName>
<RootNamespace>Orc.FileSystem.Example</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
<SonarQubeExclude>true</SonarQubeExclude>
</PropertyGroup>
<PropertyGroup>
<UseWpf>true</UseWpf>
<OutputType>WinExe</OutputType>
<StartupObject />
<NoWarn>SA1652</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Catel.Fody" Version="7.0.0" PrivateAssets="all" />
<PackageReference Include="Catel.SourceGenerators" Version="7.0.1" PrivateAssets="all" />
<PackageReference Include="Fody" Version="6.9.3" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.8" />
<PackageReference Include="Orchestra.Core" Version="8.0.0-alpha0177" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Orc.FileSystem\Orc.FileSystem.csproj" />
</ItemGroup>
<Import Project="$(MSBuildProjectDirectory)\..\Directory.Build.shared.props" Condition="Exists('$(MSBuildProjectDirectory)\..\Directory.Build.shared.props')" />
</Project>