-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSipLine.Plugin.Sdk.csproj
More file actions
53 lines (44 loc) · 2.67 KB
/
Copy pathSipLine.Plugin.Sdk.csproj
File metadata and controls
53 lines (44 loc) · 2.67 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<!-- Version detection -->
<!-- Version detection: try Export location (root) first, then Monorepo location -->
<SipLineVersionFile Condition="Exists('$(MSBuildProjectDirectory)\sipline-sdk-version.txt')">$(MSBuildProjectDirectory)\sipline-sdk-version.txt</SipLineVersionFile>
<SipLineVersionFile Condition="'$(SipLineVersionFile)' == '' AND Exists('$(MSBuildProjectDirectory)\..\sipline-sdk-version.txt')">$(MSBuildProjectDirectory)\..\sipline-sdk-version.txt</SipLineVersionFile>
<SipLineVersionFile Condition="'$(SipLineVersionFile)' == '' AND Exists('$(MSBuildProjectDirectory)\..\..\sipline-sdk-version.txt')">$(MSBuildProjectDirectory)\..\..\sipline-sdk-version.txt</SipLineVersionFile>
<!-- NuGet Package Info -->
<PackageId>SipLine.Plugin.Sdk</PackageId>
<Version>$([System.IO.File]::ReadAllText($(SipLineVersionFile)).Trim())</Version>
<Authors>Franck</Authors>
<Description>Official SDK for building SipLine Softphone plugins. Provides interfaces for call control, UI extensions, and system integration.</Description>
<PackageTags>sipline;plugin;voip;sip;sdk;softphone</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/feelautom/SipLine.Plugin.Sdk</RepositoryUrl>
<!-- Sécurité: masquer les chemins locaux dans les PDB (symbol packages) -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PathMap>$(MSBuildProjectDirectory)=.</PathMap>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
<PackageReference Include="SoftLicence.SDK" Version="1.0.0" />
<PackageReference Include="System.Management" Version="10.0.2" />
</ItemGroup>
<!-- Exclude Testing project if it exists as a subfolder (Export scenario) -->
<ItemGroup>
<Compile Remove="SipLine.Plugin.Testing\**" />
<EmbeddedResource Remove="SipLine.Plugin.Testing\**" />
<None Remove="SipLine.Plugin.Testing\**" />
</ItemGroup>
</Project>