-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteams-file-notifier.csproj
More file actions
47 lines (47 loc) · 2.2 KB
/
teams-file-notifier.csproj
File metadata and controls
47 lines (47 loc) · 2.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>teams_file_notifier</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishTrimmed>false</PublishTrimmed>
<Prefer32Bit>true</Prefer32Bit>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<None Remove="logo.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AdaptiveCards" Version="3.1.0" />
<PackageReference Include="Microsoft.Graph" Version="5.90.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.76.0" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.76.0" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.76.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4-beta1" />
<PackageReference Include="Serilog" Version="4.3.1-dev-02373" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.1-dev-00953" />
<PackageReference Include="Serilog.Sinks.Debug" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="SmartFormat.NET" Version="3.6.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup>
<None Update="$(NuGetPackageRoot)microsoft.identity.client\4.76.0\runtimes\win-x64\native\MSALRuntime_x64.dll">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
<None Update="$(NuGetPackageRoot)microsoft.identity.client\4.76.0\runtimes\win-x86\native\MSALRuntime_x86.dll">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="logo.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
</Project>