-
Notifications
You must be signed in to change notification settings - Fork 1
/
fortran-parser.csproj
61 lines (51 loc) · 1.92 KB
/
fortran-parser.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
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk;Microsoft.NET.Sdk.Publish">
<Import Project=".\common.props" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>antlr4_fortran_parser</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;3021</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;3021</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="antlr4-fortran\**" />
<Compile Remove="fortran-parserTest\**" />
<EmbeddedResource Remove="antlr4-fortran\**" />
<EmbeddedResource Remove="fortran-parserTest\**" />
<None Remove="antlr4-fortran\**" />
<None Remove="fortran-parserTest\**" />
</ItemGroup>
<ItemGroup>
<None Remove="7segsprint.f" />
</ItemGroup>
<ItemGroup>
<Content Include="7segsprint.f">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\ci.yml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.14" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="System.Collections.Specialized" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="antlr4-fortran\antlr4-fortran.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="dogtail.f">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>