-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompanyCalendar.App.WinForms.csproj
More file actions
65 lines (56 loc) · 2.36 KB
/
CompanyCalendar.App.WinForms.csproj
File metadata and controls
65 lines (56 loc) · 2.36 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
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>9f2f9b00-4975-4093-9dc8-7373487bc04f</UserSecretsId>
<ApplicationIcon>calendar.ico</ApplicationIcon>
<PackageIcon>calendar.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>..\..\LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/MareMare/PrivateCalendar</PackageProjectUrl>
<RepositoryUrl>https://github.com/MareMare/PrivateCalendar</RepositoryUrl>
<Copyright>© MareMare.</Copyright>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputType>WinExe</OutputType>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="..\stylecop.json" Link="stylecop.json" />
</ItemGroup>
<ItemGroup>
<Content Include="calendar.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.14" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.14" />
<PackageReference Include="System.Linq.Async" Version="6.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CompanyCalendar.Exporter.Google\CompanyCalendar.Exporter.Google.csproj" />
<ProjectReference Include="..\CompanyCalendar.Exporter.Ics\CompanyCalendar.Exporter.Ics.csproj" />
<ProjectReference Include="..\CompanyCalendar.Hosting.WinForms\CompanyCalendar.Hosting.WinForms.csproj" />
<ProjectReference Include="..\CompanyCalendar.Importer.Csv\CompanyCalendar.Importer.Csv.csproj" />
<ProjectReference Include="..\CompanyCalendar.Importer.MsSql\CompanyCalendar.Importer.MsSql.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="calendar.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>