-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDesktop.csproj
More file actions
64 lines (53 loc) · 2.72 KB
/
Desktop.csproj
File metadata and controls
64 lines (53 loc) · 2.72 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
<TargetFrameworks>net10.0</TargetFrameworks>
<!-- <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('osx'))">$(TargetFrameworks);net8.0-macos</TargetFrameworks> -->
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net10.0-windows10.0.19041.0</TargetFrameworks>
<WindowsSdkPackageVersion Condition="$([MSBuild]::IsOSPlatform('windows'))">10.0.19041.41</WindowsSdkPackageVersion>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>false</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>keyvaultexplorerdesktop</AssemblyName>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
<ApplicationId>keyvaultexplorerdesktop</ApplicationId>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
<Title>Key Vault Explorer for Azure</Title>
<Description>A GUI client for quickly finding azure key vault values.</Description>
<Product>Key Vault Explorer for Azure</Product>
<ApplicationIcon>AppIcon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="kv-orange.ico" />
<Content Include="AppIcon.ico" />
</ItemGroup>
<ItemGroup>
<TrimmerRootAssembly Include="KeyVaultExplorer" />
<TrimmerRootAssembly Include="FluentAvalonia" />
<TrimmerRootAssembly Include="Azure.Core" />
<TrimmerRootAssembly Include="Avalonia.Controls.DataGrid" />
<TrimmerRootAssembly Include="Azure.ResourceManager" />
<TrimmerRootAssembly Include="Azure.Security.KeyVault.Certificates" />
<TrimmerRootAssembly Include="Azure.Security.KeyVault.Keys" />
<TrimmerRootAssembly Include="Azure.Security.KeyVault.Secrets" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.0" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\KeyVaultExplorer\KeyVaultExplorer.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="AppIcon.ico">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>