-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNUnitUpdate.csproj
More file actions
35 lines (30 loc) · 1.16 KB
/
NUnitUpdate.csproj
File metadata and controls
35 lines (30 loc) · 1.16 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
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Version>1.0.0</Version>
<Title>NUnit Update Tool</Title>
<Company>Code Art Engineering</Company>
<Description>Update NUnit Test from V3 to V4.</Description>
<Copyright>Copyright (c) Code Art Engineering 2024</Copyright>
<ApplicationIcon>CAELogoSmall.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="CAELogoSmall.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\ClassLibraryNET\CodeArtEng\CodeArtEng.Extensions\CAELogoSmall.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CodeArtEng.Controls" Version="3.3.0" />
<PackageReference Include="CodeArtEng.Diagnostics" Version="4.1.0.1" />
<PackageReference Include="CodeArtEng.Extensions" Version="2.5.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
</ItemGroup>
</Project>