-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvvardDev.Ifttt.csproj
More file actions
77 lines (63 loc) · 3.16 KB
/
Copy pathInvvardDev.Ifttt.csproj
File metadata and controls
77 lines (63 loc) · 3.16 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net8.0;net6.0;net7.0</TargetFrameworks>
<LangVersion>12</LangVersion>
<OutputType>Library</OutputType>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" $(Configuration) == 'Debug' ">
<VersionSuffix>dev</VersionSuffix>
<SymbolPackageOutputPath>$(SolutionDir)packages</SymbolPackageOutputPath>
<PackageOutputPath>$(SolutionDir)packages</PackageOutputPath>
</PropertyGroup>
<PropertyGroup Label="Nuget Specs">
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageId>$(AssemblyName)</PackageId>
<AssemblyName>InvvardDev.Ifttt</AssemblyName>
<VersionPrefix>0.1.14</VersionPrefix>
<PackageVersion>$(Version)</PackageVersion>
<Title>IFTTT.NET package</Title>
<Authors>Pierre Cavaroc</Authors>
<Copyright>Copyright (c) Pierre Cavaroc 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Invvard/InvvardDev.IFTTT.NET</PackageProjectUrl>
<PackageTags>ifttt triggers actions queries</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Invvard/InvvardDev.IFTTT.NET.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>
Introducing IFTTT.NET, your C# toolkit for painless IFTTT integrations.
Forget the boilerplate code and focus on your Trigger, Query, and Action logic.
Simplify your development without the unnecessary fuss.
</Description>
</PropertyGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);**/*.csproj.DotSettings;packages.lock.json</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\LICENSE.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
<InternalsVisibleTo Include="$(AssemblyName).TestFactories" />
</ItemGroup>
</Project>