-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcontext.csproj
More file actions
42 lines (36 loc) · 1.53 KB
/
context.csproj
File metadata and controls
42 lines (36 loc) · 1.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Product>DirectProject.DotNet.Context</Product>
<AssemblyName>Health.Direct.Context</AssemblyName>
<RootNamespace>Health.Direct.Context</RootNamespace>
<Version>1.1.1</Version>
<IncludeSource>True</IncludeSource>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Copyright>Copyright (c) 2010-2022, Direct Project</Copyright>
<PackageProjectUrl>https://github.com/DirectProject/dotnetContext</PackageProjectUrl>
<Authors>Joe Shook</Authors>
<PackageId>DirectProject.DotNet.Context</PackageId>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/DirectProject/dotnetContext</RepositoryUrl>
<PackageReleaseNotes>V1.1 Parser+ Compatible with CMS ADT Notifications</PackageReleaseNotes>
<PackageTags>DirectSecureMessaging;ADTnotifications</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="True" PackagePath="\" />
<None Include="context.nuspec" />
<None Include="NOTICE.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MimeKit" Version="4.15.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="docs\" />
</ItemGroup>
</Project>