-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmakecal.csproj
More file actions
18 lines (18 loc) · 754 Bytes
/
makecal.csproj
File metadata and controls
18 lines (18 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisMode>All</AnalysisMode>
<RootNamespace>TimetableCalendarGenerator</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>None</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.17.0" />
<PackageReference Include="Google.Apis.Calendar.v3" Version="1.72.0.3953" />
<PackageReference Include="KBCsv" Version="6.0.0" />
<PackageReference Include="Microsoft.Graph.Beta" Version="5.125.0-preview" />
</ItemGroup>
</Project>