This repository was archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComputer_Science_Problem.csproj
More file actions
47 lines (43 loc) · 1.59 KB
/
Computer_Science_Problem.csproj
File metadata and controls
47 lines (43 loc) · 1.59 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
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateProgramFile>false</GenerateProgramFile>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="Images/Default/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images/OUT/bmp/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images/OUT/jpg/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images/OUT/steganography/decrypted/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images/OUT/steganography/encrypted/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images/Title/*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Update="Language/dataLanguages.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>