summarylogtreecommitdiffstats
path: root/rgx.csproj
blob: acc3f1e12ff39beba08d7a6558a026761ecaf766 (plain)
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
<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <OutputType>Exe</OutputType>
        <TargetFramework>net6.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <IsPackable>false</IsPackable>
        <Company>comroid</Company>
        <AssemblyVersion>0.1.0</AssemblyVersion>
        <FileVersion>0.10</FileVersion>
        <PublishSingleFile>true</PublishSingleFile>
        <SelfContained>true</SelfContained>
        
        <LibCommonPath>..\csapi\common\common.csproj</LibCommonPath>
    </PropertyGroup>
    
    <ItemGroup Condition="Exists('$(LibCommon)')">
        <ProjectReference Include="$(LibCommon)" />
    </ItemGroup>
    
    <ItemGroup Condition="!Exists('$(LibCommon)')">
        <PackageReference Include="comroid.csapi.common" Version="0.1.0" />
    </ItemGroup>

    <ItemGroup>
        <PackageReference Include="CommandLineParser" Version="2.9.1" />
    </ItemGroup>

</Project>