-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileOrganizer.csproj
More file actions
57 lines (56 loc) · 2.06 KB
/
FileOrganizer.csproj
File metadata and controls
57 lines (56 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>Argus</AssemblyName>
<RootNamespace>FileOrganizer</RootNamespace>
<DefaultItemExcludes>$(DefaultItemExcludes);dist\**;dist-winforms\**;winforms\**;_web-smoke-*\**;_build-*\**;_metadata-*\**;_publish-*\**;_ui-test\**;_dist-test\**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<Compile Remove="MainForm.cs" />
<Compile Remove="DesktopMainForm.cs" />
<Compile Remove="Program.WinForms.cs" />
</ItemGroup>
<ItemGroup>
<Content Update="rules.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="index.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="app.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="styles.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="web.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Reference Include="UglyToad.PdfPig">
<HintPath>UglyToad.PdfPig.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="UglyToad.PdfPig.Core">
<HintPath>UglyToad.PdfPig.Core.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="UglyToad.PdfPig.Fonts">
<HintPath>UglyToad.PdfPig.Fonts.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="UglyToad.PdfPig.Tokenization">
<HintPath>UglyToad.PdfPig.Tokenization.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="UglyToad.PdfPig.Tokens">
<HintPath>UglyToad.PdfPig.Tokens.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
</Project>