-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyConsoleApp.csproj
38 lines (32 loc) · 1.41 KB
/
MyConsoleApp.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<SignAssembly>true</SignAssembly>
<RootNamespace>HaciOguz.Templates.MyConsoleApp</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>MyConsoleApp</Title>
<Authors>Haci Oguz <[email protected]></Authors>
<Description>Console Application</Description>
<Company>HaciOguz</Company>
<AssemblyVersion>1.0.1</AssemblyVersion>
<FileVersion>1.0.1</FileVersion>
<AssemblyOriginatorKeyFile>h0x-ca.snk</AssemblyOriginatorKeyFile>
<PublicSign>true</PublicSign>
<TargetFrameworks>netcoreapp3.0;netcoreapp2.1;netcoreapp2.2;netcoreapp3.1</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<ToolCommandName>h0x-ca</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<RepositoryUrl>https://github.com/hacioguz/MyConsoleApp</RepositoryUrl>
<PackageVersion>1.0.1</PackageVersion>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
</PropertyGroup>
</Project>