-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRestPushModel.csproj
More file actions
61 lines (53 loc) · 2.12 KB
/
RestPushModel.csproj
File metadata and controls
61 lines (53 loc) · 2.12 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>OneTooX.RestPush.Model</RootNamespace>
<AssemblyName>OneTooX.RestPush.Model</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Fiftytwo A/S</Authors>
<Description>Model classes for the OneTooX REST Push archive solution.</Description>
<Copyright>Fiftytwo A/S</Copyright>
<PackageIcon>OneTooX-h25.png</PackageIcon>
<PackageIconUrl />
<PackageTags>OneTooX REST</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/OneTooX/RestArchiveModels.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>Documentation/OneTooX.RestPush.Model.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>Documentation/OneTooX.RestPush.Model.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace></RootNamespace>
<Configurations>Debug;Release</Configurations>
<EnableDocumentationFile>true</EnableDocumentationFile>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.13</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="Documentation/OneTooX.RestPush.Model.xml" />
</ItemGroup>
<ItemGroup>
<Content Include="Documentation/OneTooX.RestPush.Model.xml">
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
<PackageFlatten>true</PackageFlatten>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Visible>False</Visible>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="img\OneTooX-h25.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>
</Project>