-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoms-dotnet-templates.csproj
More file actions
29 lines (26 loc) · 1.1 KB
/
Copy pathtoms-dotnet-templates.csproj
File metadata and controls
29 lines (26 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IncludeBuildOutput>False</IncludeBuildOutput>
<IncludeSource>False</IncludeSource>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<OutputPath>$(ArtifactsTmpDir)</OutputPath>
<EnableDefaultItems>False</EnableDefaultItems>
<IsPackable>true</IsPackable>
<IsShipping>true</IsShipping>
<IsShippingPackage>true</IsShippingPackage>
<NoWarn>$(NoWarn);2008;NU5105</NoWarn>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageId>TOMS.DotnetTemplate</PackageId>
<Authors>Harold-Andreas Zellner</Authors>
<Description>Some dotnet new templates for personally usage</Description>
<language>en-US</language>
<PackageProjectUrl>https://github.com/silenterus/toms-dotnet-templates</PackageProjectUrl>
<PackageType>Template</PackageType>
<SuppressDependenciesWhenPacking>True</SuppressDependenciesWhenPacking>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="content\**" PackagePath="content" />
</ItemGroup>
</Project>