Skip to content

Commit

Permalink
Update solution structure
Browse files Browse the repository at this point in the history
  • Loading branch information
feast107 committed Oct 30, 2023
1 parent 55a1c22 commit 8396020
Show file tree
Hide file tree
Showing 10 changed files with 103 additions and 154 deletions.
Original file line number Diff line number Diff line change
@@ -1,96 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A175A416-9532-4102-90B4-02F807EE1F94}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Antelcat.Wpf.I18N.Demo.Framework</RootNamespace>
<AssemblyName>Antelcat.Wpf.I18N.Demo.Framework</AssemblyName>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<LangVersion>11</LangVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
</ApplicationDefinition>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<Link>Properties\Resources.resx</Link>
</EmbeddedResource>
<EmbeddedResource Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.zh.resx">
<Generator>ResXFileCodeGenerator</Generator>
<DependentUpon>Resources.resx</DependentUpon>
<Link>Properties\Resources.zh.resx</Link>
</EmbeddedResource>
<Compile Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.Designer.cs">
<Link>Properties\Resources.Designer.cs</Link>
</Compile>
<ProjectReference OutputItemType="Analyzer" Include="..\Antelcat.Wpf.I18N.SourceGenerators\Antelcat.Wpf.I18N.SourceGenerators.csproj">
<Project>{51d7777a-1f56-4f09-8581-7f546b2f1817}</Project>
<Name>Antelcat.Wpf.I18N.SourceGenerators</Name>
</ProjectReference>
<ProjectReference Include="..\Antelcat.Wpf.I18N\Antelcat.Wpf.I18N.csproj">
<Project>{87ae0560-b337-4958-97b4-7928c6c6962c}</Project>
<Name>Antelcat.Wpf.I18N</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="WPF-UI" Version="2.0.3" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems" Label="Shared" />
</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net462</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AssemblyVersion>1.0.0</AssemblyVersion>
<LangVersion>preview</LangVersion>
<FileVersion>1.0.0</FileVersion>
<RootNamespace>Antelcat.Wpf.I18N.Demo</RootNamespace>
<ApplicationIcon>../Icon.ico</ApplicationIcon>
<Company>Antelcat</Company>
<Product>Antelcat.Wpf.I18N.Demo-1.0.0</Product>
<AssemblyName>Antelcat.Wpf.I18N.Demo</AssemblyName>
<PackageId>Antelcat.Wpf.I18N.Demo</PackageId>
<Authors>Antelcat</Authors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Antelcat.Wpf.I18N" Version="1.0.1"/>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2"/>
<PackageReference Include="WPF-UI" Version="2.1.0"/>
</ItemGroup>


<ItemGroup>
<EmbeddedResource Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.resx">
<Link>Properties\Resources.resx</Link>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.zh.resx">
<Link>Properties\Resources.zh.resx</Link>
<DependentUpon>Resources.resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>


<ItemGroup>
<Compile Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.Designer.cs">
<Link>Properties\Resources.Designer.cs</Link>
</Compile>
</ItemGroup>


<Import Project="..\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems" Label="Shared"/>

</Project>
6 changes: 0 additions & 6 deletions src/Antelcat.Wpf.I18N.Demo.Framework/App.config

This file was deleted.

4 changes: 2 additions & 2 deletions src/Antelcat.Wpf.I18N.Demo.Framework/App.xaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Application x:Class="Antelcat.Wpf.I18N.Demo.Framework.App"
<Application x:Class="Antelcat.Wpf.I18N.Demo.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
>
>
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
Expand Down
15 changes: 6 additions & 9 deletions src/Antelcat.Wpf.I18N.Demo.Framework/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using Antelcat.Wpf.I18N.Demo.Models;
using Antelcat.Wpf.I18N.Demo.Windows;

namespace Antelcat.Wpf.I18N.Demo.Framework
namespace Antelcat.Wpf.I18N.Demo
{
/// <summary>
/// App.xaml 的交互逻辑
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
public partial class App
{

protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
new MainWindow().Show();
}
}

}
10 changes: 10 additions & 0 deletions src/Antelcat.Wpf.I18N.Demo.Framework/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using System.Windows;

[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
27 changes: 14 additions & 13 deletions src/Antelcat.Wpf.I18N.Demo/Antelcat.Wpf.I18N.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,39 @@
<AssemblyVersion>1.0.0</AssemblyVersion>
<LangVersion>preview</LangVersion>
<FileVersion>1.0.0</FileVersion>
<ApplicationIcon>./Icon.ico</ApplicationIcon>
<ApplicationIcon>../Icon.ico</ApplicationIcon>
<Company>Antelcat</Company>
<Product>Antelcat.Wpf.I18N.Demo-1.0.0</Product>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Antelcat.Wpf.I18N.SourceGenerators\Antelcat.Wpf.I18N.SourceGenerators.csproj" OutputItemType="Analyzer" />
<ProjectReference Include="..\Antelcat.Wpf.I18N\Antelcat.Wpf.I18N.csproj" />
<ProjectReference Include="..\Antelcat.Wpf.I18N.SourceGenerators\Antelcat.Wpf.I18N.SourceGenerators.csproj" OutputItemType="Analyzer"/>
<ProjectReference Include="..\Antelcat.Wpf.I18N\Antelcat.Wpf.I18N.csproj"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageReference Include="WPF-UI" Version="2.0.3" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1"/>
<PackageReference Include="WPF-UI" Version="2.0.3"/>
</ItemGroup>

<ItemGroup>
<Compile Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.Designer.cs">
<Link>Resources.Designer.cs</Link>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Properties\Resources.Designer.cs</LastGenOutput>
<Link>Properties\Resources.resx</Link>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.zh.resx">
<Generator>ResXFileCodeGenerator</Generator>
<DependentUpon>Resources.resx</DependentUpon>
<Link>Properties\Resources.zh.resx</Link>
<DependentUpon>Resources.resx</DependentUpon>
</EmbeddedResource>
<Compile Include="..\Antelcat.Wpf.I18N.Demo.Shared\Properties\Resources.Designer.cs">
<Link>Properties\Resources.Designer.cs</Link>
</Compile>
</ItemGroup>


<Import Project="..\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems" Label="Shared" />
<Import Project="..\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems" Label="Shared"/>

</Project>
48 changes: 21 additions & 27 deletions Antelcat.Wpf.I18N.sln → src/Antelcat.Wpf.I18N.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,21 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34202.233
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N", "src\Antelcat.Wpf.I18N\Antelcat.Wpf.I18N.csproj", "{87AE0560-B337-4958-97B4-7928C6C6962C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N", "Antelcat.Wpf.I18N\Antelcat.Wpf.I18N.csproj", "{87AE0560-B337-4958-97B4-7928C6C6962C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N.SourceGenerators", "src\Antelcat.Wpf.I18N.SourceGenerators\Antelcat.Wpf.I18N.SourceGenerators.csproj", "{51D7777A-1F56-4F09-8581-7F546B2F1817}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N.SourceGenerators", "Antelcat.Wpf.I18N.SourceGenerators\Antelcat.Wpf.I18N.SourceGenerators.csproj", "{51D7777A-1F56-4F09-8581-7F546B2F1817}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N.Demo", "src\Antelcat.Wpf.I18N.Demo\Antelcat.Wpf.I18N.Demo.csproj", "{7F3763B9-97B3-4FB6-89B5-B54600693577}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N.Demo", "Antelcat.Wpf.I18N.Demo\Antelcat.Wpf.I18N.Demo.csproj", "{7F3763B9-97B3-4FB6-89B5-B54600693577}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extern", "Extern", "{2835EE7C-9F76-45A2-9754-E86902623A81}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Feast.CodeAnalysis.Extensions.SourceGenerators", "extrern\CodeAnalysis.Extensions\src\Feast.CodeAnalysis.Extensions.SourceGenerators\Feast.CodeAnalysis.Extensions.SourceGenerators.csproj", "{B2D6AEE3-D9E3-40E5-A80B-B3E3F3DD64B2}"
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Antelcat.Wpf.I18N.Demo.Shared", "Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.shproj", "{50BA267B-188A-46D3-B957-878790AF1E76}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Antelcat.Wpf.I18N.Demo.Shared", "src\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.shproj", "{50BA267B-188A-46D3-B957-878790AF1E76}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "__", "__", "{DAC60261-079A-44B4-8872-61FC02A4AE9F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antelcat.Wpf.I18N.Demo.Framework", "src\Antelcat.Wpf.I18N.Demo.Framework\Antelcat.Wpf.I18N.Demo.Framework.csproj", "{A175A416-9532-4102-90B4-02F807EE1F94}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Feast.CodeAnalysis.Extensions.SourceGenerators", "..\extern\CodeAnalysis.Extensions\src\Feast.CodeAnalysis.Extensions.SourceGenerators\Feast.CodeAnalysis.Extensions.SourceGenerators.csproj", "{190293FC-3F2C-4FEE-8090-62A09713DD8D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "__", "__", "{DAC60261-079A-44B4-8872-61FC02A4AE9F}"
ProjectSection(SolutionItems) = preProject
Icon.png = Icon.png
LICENSE = LICENSE
README.en.md = README.en.md
README.md = README.md
EndProjectSection
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antelcat.Wpf.I18N.Demo.Framework", "Antelcat.Wpf.I18N.Demo.Framework\Antelcat.Wpf.I18N.Demo.Framework.csproj", "{3B6E4D9A-09D3-4567-B89F-4B02EB6D3F55}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -43,29 +37,29 @@ Global
{7F3763B9-97B3-4FB6-89B5-B54600693577}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7F3763B9-97B3-4FB6-89B5-B54600693577}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7F3763B9-97B3-4FB6-89B5-B54600693577}.Release|Any CPU.Build.0 = Release|Any CPU
{B2D6AEE3-D9E3-40E5-A80B-B3E3F3DD64B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B2D6AEE3-D9E3-40E5-A80B-B3E3F3DD64B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B2D6AEE3-D9E3-40E5-A80B-B3E3F3DD64B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B2D6AEE3-D9E3-40E5-A80B-B3E3F3DD64B2}.Release|Any CPU.Build.0 = Release|Any CPU
{A175A416-9532-4102-90B4-02F807EE1F94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A175A416-9532-4102-90B4-02F807EE1F94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A175A416-9532-4102-90B4-02F807EE1F94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A175A416-9532-4102-90B4-02F807EE1F94}.Release|Any CPU.Build.0 = Release|Any CPU
{190293FC-3F2C-4FEE-8090-62A09713DD8D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{190293FC-3F2C-4FEE-8090-62A09713DD8D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{190293FC-3F2C-4FEE-8090-62A09713DD8D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{190293FC-3F2C-4FEE-8090-62A09713DD8D}.Release|Any CPU.Build.0 = Release|Any CPU
{3B6E4D9A-09D3-4567-B89F-4B02EB6D3F55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B6E4D9A-09D3-4567-B89F-4B02EB6D3F55}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B6E4D9A-09D3-4567-B89F-4B02EB6D3F55}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B6E4D9A-09D3-4567-B89F-4B02EB6D3F55}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{B2D6AEE3-D9E3-40E5-A80B-B3E3F3DD64B2} = {2835EE7C-9F76-45A2-9754-E86902623A81}
{190293FC-3F2C-4FEE-8090-62A09713DD8D} = {2835EE7C-9F76-45A2-9754-E86902623A81}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {73D6AEFA-1477-4119-9F85-0DA27E35BDB8}
EndGlobalSection
GlobalSection(SharedMSBuildProjectFiles) = preSolution
src\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems*{50ba267b-188a-46d3-b957-878790af1e76}*SharedItemsImports = 13
src\WpfToolkit.Mvvm.SourceGenerators\WpfToolkit.Mvvm.SourceGenerators.projitems*{51d7777a-1f56-4f09-8581-7f546b2f1817}*SharedItemsImports = 5
src\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems*{7f3763b9-97b3-4fb6-89b5-b54600693577}*SharedItemsImports = 5
src\Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems*{a175a416-9532-4102-90b4-02f807ee1f94}*SharedItemsImports = 4
extrern\CodeAnalysis.Extensions\src\Feast.CodeAnalysis.Extensions.Shared\Feast.CodeAnalysis.Extensions.Shared.projitems*{b2d6aee3-d9e3-40e5-a80b-b3e3f3dd64b2}*SharedItemsImports = 5
..\extern\CodeAnalysis.Extensions\src\Feast.CodeAnalysis.Extensions.Shared\Feast.CodeAnalysis.Extensions.Shared.projitems*{190293fc-3f2c-4fee-8090-62a09713dd8d}*SharedItemsImports = 5
Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems*{3b6e4d9a-09d3-4567-b89f-4b02eb6d3f55}*SharedItemsImports = 5
Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems*{50ba267b-188a-46d3-b957-878790af1e76}*SharedItemsImports = 13
WpfToolkit.Mvvm.SourceGenerators\WpfToolkit.Mvvm.SourceGenerators.projitems*{51d7777a-1f56-4f09-8581-7f546b2f1817}*SharedItemsImports = 5
Antelcat.Wpf.I18N.Demo.Shared\Antelcat.Wpf.I18N.Demo.Shared.projitems*{7f3763b9-97b3-4fb6-89b5-b54600693577}*SharedItemsImports = 5
EndGlobalSection
EndGlobal
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference OutputItemType="Analyzer" Include="..\..\extrern\CodeAnalysis.Extensions\src\Feast.CodeAnalysis.Extensions.SourceGenerators\Feast.CodeAnalysis.Extensions.SourceGenerators.csproj" />
<ProjectReference OutputItemType="Analyzer" Include="..\..\extern\CodeAnalysis.Extensions\src\Feast.CodeAnalysis.Extensions.SourceGenerators\Feast.CodeAnalysis.Extensions.SourceGenerators.csproj" />
</ItemGroup>

</Project>
File renamed without changes.

0 comments on commit 8396020

Please sign in to comment.