-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathClockify.csproj
More file actions
96 lines (96 loc) · 4.63 KB
/
Clockify.csproj
File metadata and controls
96 lines (96 loc) · 4.63 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<UseWindowsForms>false</UseWindowsForms>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<AssemblyName>dev.duerrenberger.clockify</AssemblyName>
<OutputType>Exe</OutputType>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<StartupObject>Clockify.Program</StartupObject>
<EnableNETAnalyzers>false</EnableNETAnalyzers>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<AssemblyVersion>1.15</AssemblyVersion>
<PackageVersion>1.15</PackageVersion>
<Title>Clockify</Title>
<Authors>Lukas Dürrenberger</Authors>
<Description>This plugin allows you to track, start and stop Clockify timers on your Elgato Stream Deck</Description>
<Copyright>Copyright (c) 2021-2026 Lukas Dürrenberger</Copyright>
<PackageProjectUrl>https://github.com/eXpl0it3r/streamdeck-clockify</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/eXpl0it3r/streamdeck-clockify/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://github.com/eXpl0it3r/streamdeck-clockify/blob/master/Images/clockifyIcon%402x.png</PackageIconUrl>
<RepositoryUrl>https://github.com/eXpl0it3r/streamdeck-clockify</RepositoryUrl>
<RootNamespace />
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\dev.duerrenberger.clockify.sdPlugin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\dev.duerrenberger.clockify.sdPlugin\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<PublishDir>bin\Publish\dev.duerrenberger.clockify.sdPlugin\</PublishDir>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ClockifyClient" Version="1.2.2" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NLog" Version="6.0.7" />
<PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="6.0.5.128" />
<PackageReference Include="StreamDeck-Tools" Version="6.3.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<!-- Satisfy dependency resolution for StreamDeck-Tools -->
<PackageReference Include="System.Collections.Immutable" Version="10.0.2" />
<PackageReference Include="System.Reflection.Metadata" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="manifest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="PropertyInspector\PluginActionPI.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="PropertyInspector\sdpi.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="PropertyInspector\sdtools.common.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\toggleActionActiveIcon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\toggleActionActiveIcon@2x.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\toggleActionInactiveIcon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\toggleActionInactiveIcon@2x.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\categoryTimerIcon.svg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\categoryTimerIcon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\categoryTimerIcon@2x.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\clockifyIcon.svg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\clockifyIcon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\clockifyIcon@2x.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>