forked from kristiker/Datamodel.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatamodel.NET.csproj
52 lines (52 loc) · 1.99 KB
/
Datamodel.NET.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>Datamodel</RootNamespace>
<PackageId>KeyValues2</PackageId>
<Version>0.5-beta</Version>
<PackageLicenseFile>COPYING</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<NoWarn>IDE0018</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|AnyCPU'">
<OutputPath>bin\Documentation\</OutputPath>
<Optimize>true</Optimize>
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<DocumentationFile>bin\Documentation\Datamodel.NET.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<DelaySign>false</DelaySign>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="COPYING" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="DmxPad\**" />
<EmbeddedResource Remove="DmxPad\**" />
<None Remove="DmxPad\**" />
<Page Remove="DmxPad\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\Properties\AssemblyInfo.cs" />
<Compile Remove="Tests\Tests.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\Properties\AssemblyInfo.cs" />
<Compile Remove="Tests\Tests.cs" />
</ItemGroup>
</Project>