Inegrate calendi in meeting Schedule
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
712 B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <AssemblyName>angular</AssemblyName>
  5. <PackageId>angular</PackageId>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <Compile Remove="node_modules\**" />
  9. <EmbeddedResource Remove="node_modules\**" />
  10. <None Remove="node_modules\**" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Compile Remove="dist" />
  14. <None Include="app.config" />
  15. <None Update="wwwroot\**\*;web.config">
  16. <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
  17. </None>
  18. </ItemGroup>
  19. <ItemGroup>
  20. <None Update="Dockerfile">
  21. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  22. </None>
  23. </ItemGroup>
  24. </Project>